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 5 matches

by reddy
Tue Nov 28, 2006 1:54 pm
Forum: Scripting Help
Topic: booleans with TCL?
Replies: 2
Views: 2724

This compiles, but it doesnt work. can anyone help? please? global var set var TRUE bind pub - !start pub_start proc pub_start {nick host hand chan lang text} { global var set var TRUE putserv "PRIVMSG #channel : FORWARD TURNED ON" } bind pub - !stop pub_stop proc pub_stop {nick host hand ...
by reddy
Tue Nov 28, 2006 10:35 am
Forum: Scripting Help
Topic: booleans with TCL?
Replies: 2
Views: 2724

booleans with TCL?

i have a message forwarding script, so when someone pm's my bot it does xxx. Im getting other bots pming my bot and spamming crap into my selected channel to which the private messages get sent :| How can i use booleans with TCL? As in Declare Forward as a variable. if (forward == true) send stuff t...
by reddy
Sun Nov 26, 2006 2:01 pm
Forum: Eggdrop Help
Topic: How to join an invite channel?
Replies: 4
Views: 4540

Thanks! Will do, i've book marked this, so ill keep replying to it!
by reddy
Sun Nov 26, 2006 1:05 pm
Forum: Eggdrop Help
Topic: How to join an invite channel?
Replies: 4
Views: 4540

Either use "bind need" or check the need-invite channel setting; Either allows you to trigger a piece of tcl-code to be executed when your eggdrop recieves the need-invite errorcode. Might very well be a few such scripts in the Tcl Archive . If not, should'nt be too hard to implement, and...
by reddy
Sun Nov 26, 2006 12:30 pm
Forum: Eggdrop Help
Topic: How to join an invite channel?
Replies: 4
Views: 4540

How to join an invite channel?

Hey, i have a bot that needs to join private channels, via a Q auth and self invite. I have the Q auth, how can i go about getting my bot into the private channels? the irc commands would be /msg q invite #channel then /j channel is it in the partyline or bot config or should i do a script? Im new t...