This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

Search found 16 matches

by pilot1
Sun Aug 10, 2003 9:06 am
Forum: Archive
Topic: Bot ignores Nickserv..
Replies: 2
Views: 826

That works perfectly, thanks!
by pilot1
Sun Aug 10, 2003 8:43 am
Forum: Archive
Topic: Bot ignores Nickserv..
Replies: 2
Views: 826

Bot ignores Nickserv..

When I do .dump PRIVMSG nickserv :identify password, the bot identifies correctly.
However, I get this message.
[08:40] Flood from @MyIRCNetwork.com! Placing on ignore!
How can I set it so that it never ignore *@MyIRCNetwork.com ?
Thanks!
by pilot1
Wed Mar 12, 2003 5:09 pm
Forum: Archive
Topic: Help with TCL Script to say msg channel
Replies: 7
Views: 2986

Thanks, it works.
by pilot1
Wed Mar 12, 2003 3:53 pm
Forum: Archive
Topic: Raw command for an action?
Replies: 10
Views: 3033

It works, Thanks! :D
by pilot1
Wed Mar 12, 2003 3:34 pm
Forum: Archive
Topic: Raw command for an action?
Replies: 10
Views: 3033

Here's the code, but it still won't work.. any ideas? bind msg - action pub:action proc pub:action { nick uhost hand text } { if {[llength [split $text]] < 2} { putserv "PRIVMSG $nick :\002Usage\002: action #channel text" return } set channel [lindex $text 0] set msg [lrange $text 1 end] i...
by pilot1
Wed Mar 12, 2003 12:16 pm
Forum: Archive
Topic: Raw command for an action?
Replies: 10
Views: 3033

But I also want it to do an action (/me) instead of a PRIVMSG, will changing say change that too?
by pilot1
Wed Mar 12, 2003 11:23 am
Forum: Archive
Topic: Raw command for an action?
Replies: 10
Views: 3033

Thanks, I have a TCL script from this forum to do a PRIVMSG, is it possible to make a copy of it that does an action on the word 'action' intstead of a PRIVMSG on the word 'say'? The scripts is below. bind msg m say pub:say proc pub:say { nick uhost hand text } { if {[llength [split $text]] < 2} { p...
by pilot1
Wed Mar 12, 2003 9:47 am
Forum: Archive
Topic: Raw command for an action?
Replies: 10
Views: 3033

I looked at the formatting codes thread and couldn't find anything on how to do an action (/me in most clients) there, I looked at the links and according to the CTCP Protocol Specifications the command is "\001ACTION does the action.\001" but when I try to input that it doesn't work, prob...
by pilot1
Tue Mar 11, 2003 9:03 pm
Forum: Archive
Topic: Raw command for an action?
Replies: 10
Views: 3033

Raw command for an action?

What is the raw command for an action? (By action I mean /me does whatever.)
I've tried everything I can think of..
Thanks
by pilot1
Tue Mar 11, 2003 8:24 pm
Forum: Archive
Topic: Help with TCL Script to say msg channel
Replies: 7
Views: 2986

Thanks, that works perfectly.

Could you also please give me the code to do the same thing, except do it on the word "action" and do a /me action instead of messaging the channel with it?
by pilot1
Tue Mar 11, 2003 4:45 pm
Forum: Archive
Topic: Help with RAW Commands
Replies: 3
Views: 1386

That works, Thanks!
by pilot1
Tue Mar 11, 2003 4:26 pm
Forum: Archive
Topic: Help with RAW Commands
Replies: 3
Views: 1386

Help with RAW Commands

Ok, i'm a master on my bot and when I do '.dump PRIVMSG #channel testing 1 2 3" It only sends testing to the channel, the same thing happens no mater what I type, it only sends the first word to the channel.
Does anyone know what i'm doing wrong?
by pilot1
Tue Mar 11, 2003 4:21 pm
Forum: Archive
Topic: Help with TCL Script to say msg channel
Replies: 7
Views: 2986

Thanks, just one problem though..
It lets me do the say command, but it won't let anyone else.
Do you have any idea how to fix that? I want *everyone* to have access to it.
by pilot1
Mon Mar 10, 2003 5:16 pm
Forum: Archive
Topic: Help with TCL Script to say msg channel
Replies: 7
Views: 2986

I don't see an edit button so... Ok, I figured out the command to do that would be ".dump PRIVMSG #channel whatever your saying" on the DCC chat. How can I make a TCL script where "!say yada yada" tells the eggdrop to do ".dump PRIVMSG #channel yada yada"? I just need !...
by pilot1
Mon Mar 10, 2003 1:22 pm
Forum: Archive
Topic: Help with TCL Script to say msg channel
Replies: 7
Views: 2986

Help with TCL Script to say msg channel

Ok, I know virtually nothing about eggdrop scripting.. What I want is when you send a message to the eggdrop with something like "!say bob smells" the eggdrop performs the command "/msg $chan bob smells" Can anyone write me a simple script for this? :D And tell me how to install ...