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.
Old posts that have not been replied to for several years.
-
d
dnb4u
Post
by dnb4u »
i wrote this small tcl that makes the bot rejoin the chan if someone deops it (it will get op from chanserv when rejoining)
bind mode - *-o* request_op
proc request_op { nick host hand chan mode victim } {
if {[isbotnick $victim]} {
putserv "PART $chan"
putserv "JOIN $chan"
puthelp "PRIVMSG $chan
on't deop me again u twat..."
}
return 0
}
---
ok my question is what should i change on that in order to make the bot KILL the user who deoped it after rejoining?
thanks a lot
-
Souperman
- Halfop
- Posts: 69
- Joined: Sat Feb 02, 2002 8:00 pm
- Location: Cape Town, South Africa
-
Contact:
Post
by Souperman »
putserv "KILL Luser
ie die die!"
-
d
dnb4u
Post
by dnb4u »
erm, that aint working :/
or did u write it wrong? whats that " Luser" thing?
-
M
Mordred
Post
by Mordred »
kill = kick?
putserv "KICK $nick : die die die!"
oh.. ircop kill
putserv "KILL $nick : die die die!"
any of these commands are put stright to the server:
http://www.flirt.de/chat/faq/commands.html
<font size=-1>[ This Message was edited by: Mordred on 2002-03-28 14:32 ]</font>
-
d
dnb4u
Post
by dnb4u »
dman thats why the **** didnt work
i was writing
putserv "KILL $nick shut up"
instead of
putserv "KILL $nick : die die die!"
i always forget that " : "
thanks guys