egghelp.org community Forum Index
[ egghelp.org home | forum home ]
egghelp.org community
Discussion of eggdrop bots, shell accounts and tcl scripts.
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

echo off
Goto page 1, 2  Next
 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    egghelp.org community Forum Index -> Archive
View previous topic :: View next topic  
Author Message
chubbychub
Voice


Joined: 09 Oct 2005
Posts: 38
Location: gotham city

PostPosted: Sun Oct 09, 2005 5:34 am    Post subject: echo off Reply with quote

i do not want to see what i say thru dcc reflected back to my screen. i turned echo off, rehash, reload, save. but it still comes back to me anything i say or act. how can i set this NOT to reflect back to me?
thanks in advance
Back to top
View user's profile Send private message
Alchera
Revered One


Joined: 11 Aug 2003
Posts: 3344
Location: Ballarat Victoria, Australia

PostPosted: Sun Oct 09, 2005 6:27 am    Post subject: Reply with quote

Well, '.echo off' does work! You you calso look at turning '.chanset #chan -statuslog' (exceedingly annoying also).

For detailed information regarding console flags:

Code:
.help console

_________________
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
Back to top
View user's profile Send private message Visit poster's website
chubbychub
Voice


Joined: 09 Oct 2005
Posts: 38
Location: gotham city

PostPosted: Sun Oct 09, 2005 8:24 am    Post subject: Reply with quote

i did look at the .help console but there is nothign that gives me option to set the echo off. and i tried to use the "chanset #chan -statuslog' but i get still the echo back to me. not sure waht i am doing worng. plz help. i search the forum for help and read as much as i can.
Back to top
View user's profile Send private message
Alchera
Revered One


Joined: 11 Aug 2003
Posts: 3344
Location: Ballarat Victoria, Australia

PostPosted: Sun Oct 09, 2005 9:39 am    Post subject: Reply with quote

Code:
.echo off

That's it! Anyone added to the bot that has partyline access can use that command.

Can you paste an example of this "echoing"?
_________________
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
Back to top
View user's profile Send private message Visit poster's website
chubbychub
Voice


Joined: 09 Oct 2005
Posts: 38
Location: gotham city

PostPosted: Sun Oct 09, 2005 4:04 pm    Post subject: Reply with quote

[[1:02pm]<07chubby> .say morning
[1:02pm] 12<Alfred12> Said to #dummies: morning

Alfred is the eggdrop, and no one has access to it but me.
Back to top
View user's profile Send private message
Alchera
Revered One


Joined: 11 Aug 2003
Posts: 3344
Location: Ballarat Victoria, Australia

PostPosted: Sun Oct 09, 2005 9:15 pm    Post subject: Reply with quote

Quote:
Alchera .say morning
Austar [04:10] #Alchera# (#Ballarat) say morning
Austar Said to #Ballarat: morning

Is normal behaviour with echo turned off.
_________________
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
Back to top
View user's profile Send private message Visit poster's website
chubbychub
Voice


Joined: 09 Oct 2005
Posts: 38
Location: gotham city

PostPosted: Mon Oct 10, 2005 1:52 am    Post subject: Reply with quote

how can i turn it off? i type: .echo off .rehash .reload and it still displays everything i said back to me.
so i tried .echo on .rehash. reload and it still the same..
how can i get rid of that?
Back to top
View user's profile Send private message
Alchera
Revered One


Joined: 11 Aug 2003
Posts: 3344
Location: Ballarat Victoria, Australia

PostPosted: Mon Oct 10, 2005 3:24 am    Post subject: Reply with quote

Alchera wrote:
Is normal behaviour with echo turned off.

Trouble understanding PLAIN English?

It's doing exactly what it is supposed to do. Confused
_________________
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
Back to top
View user's profile Send private message Visit poster's website
chubbychub
Voice


Joined: 09 Oct 2005
Posts: 38
Location: gotham city

PostPosted: Mon Oct 10, 2005 4:27 am    Post subject: Reply with quote

ok.. i just want to know how can i set it to NOT display back everything i say into the channel . thanks
Back to top
View user's profile Send private message
Sir_Fz
Revered One


Joined: 27 Apr 2003
Posts: 3793
Location: Lebanon

PostPosted: Mon Oct 10, 2005 5:13 am    Post subject: Reply with quote

Use a Tcl script then:
Code:
bind dcc n botsay botsay

proc botsay {hand idx arg} {
 if {[llength [split $arg]]} {
  puthelp "privmsg #dummies :$arg"
 }
}

So instead of .say you can use .botsay.
_________________
Follow me on GitHub

- Opposing

Public Tcl scripts
Back to top
View user's profile Send private message Visit poster's website
chubbychub
Voice


Joined: 09 Oct 2005
Posts: 38
Location: gotham city

PostPosted: Mon Oct 10, 2005 5:30 am    Post subject: Reply with quote

i am not trying to change the .say to .botsay . what i am trying to do is that i dont want to see everthing i say from the bot display back to it because it fills up the whole screen fast since i talk thru it alot. how can i do that? it was like that until someone told me to use a command that i forgot and i can't set it back the way it was.
Back to top
View user's profile Send private message
Alchera
Revered One


Joined: 11 Aug 2003
Posts: 3344
Location: Ballarat Victoria, Australia

PostPosted: Mon Oct 10, 2005 5:41 am    Post subject: Reply with quote

If you know C then you might be able to sift through eggdrop source, modify where appropriate, and then recompile.

There is no magic anything to stop the behaviour the bot displays via DCC when using ".say [channel] <text>".

The solution posted by Sir_Fz is a work around for that behaviour and I suggest you use it.
_________________
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
Back to top
View user's profile Send private message Visit poster's website
greenbear
Owner


Joined: 24 Sep 2001
Posts: 733
Location: Norway

PostPosted: Mon Oct 10, 2005 11:29 am    Post subject: Reply with quote

Quote:
.console -c
Back to top
View user's profile Send private message Send e-mail
Alchera
Revered One


Joined: 11 Aug 2003
Posts: 3344
Location: Ballarat Victoria, Australia

PostPosted: Mon Oct 10, 2005 3:49 pm    Post subject: Reply with quote

greenbear wrote:
Quote:
.console -c

Nope.

Code:
Alchera .console -c
Austar Set your console to #Ballarat: mobxs (msgs, misc, bots, files, server).
Alchera .say Testing
Austar Said to #Ballarat: Testing

He's wants all of it off i.e. last line (above).
_________________
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
Back to top
View user's profile Send private message Visit poster's website
chubbychub
Voice


Joined: 09 Oct 2005
Posts: 38
Location: gotham city

PostPosted: Mon Oct 10, 2005 11:22 pm    Post subject: Reply with quote

yeah. i tried .console -c before i started this post and it dont work.
Back to top
View user's profile Send private message
Display posts from previous:   
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    egghelp.org community Forum Index -> Archive All times are GMT - 4 Hours
Goto page 1, 2  Next
Page 1 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Forum hosting provided by Reverse.net

Powered by phpBB © 2001, 2005 phpBB Group
subGreen style by ktauber