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.

Error in timebomb.tcl

Old posts that have not been replied to for several years.
Locked
S
Sloop
Halfop
Posts: 44
Joined: Tue Jul 12, 2005 7:04 pm

Error in timebomb.tcl

Post by Sloop »

Hi @ll,

I loaded the little fun game TIMEBOMB.TCL but it seems there's a problem: When cutting the wrong fire and the bomb blows up, the user is NOT KICKED out of the channel. Meanwhile I checked the partyline of this channel, and I get the message:

"userxyz is kicked of #channelname (*SNIP* ... BOOOOOOM!)"

but the process KICK seems not to work. I checked the .tcl script, and its doint the kick by this code:

Code: Select all

proc IRCKick {theNick theChannel theReason} {
  note "Kicking $theNick in $theChannel (Reason: $theReason)"
  putserv "KICK $theChannel $theNick :$theReason"
}
I tried also to replace putserv with putquick but it still doesn't work. Can anyone help me please? what's wrong here?

Thanks in advance...
Sloop
User avatar
demond
Revered One
Posts: 3073
Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:

Post by demond »

is your bot op on the channel? set dcc console +v (log output to server) and see if the bot actually issues that KICK
Locked