#------------------------------------------------- #remind.tcl 1.0 written by dre^ @ EFnet on 7.22.00 #------------------------------------------------- #Have you ever been on IRC and wished you had a little alarm #clock built right into your bot? Well, now you do. This is a #very simple script tha...
set login "L" set b "[-] " ## delete cookie bind part L * userinfopart proc userinfopart { nick uhost hand chan msg } { global login if {[matchattr $hand L $chan]} { chattr $hand -$login dccbroadcast "$b$arg fez logout (part)" } return 0 } bind sign L * userinfoquit pro...
does your ircd support STATUS command? i have a script that checks nick STATUS in services every time they execute a bind. forcing the bot to recognize users for the time they stay on chan, might get you insecure (parts, quits, netsplits, nickchanges). and yes, you need a bind notc to grab the NickS...
beside using raw's, some irc deamons support STATUS command. ie : NickServ STATUS nick , will retrieve his/her numbered status. · · [ NickServ (ident@network.org) ] STATUS <somenick> 3 online and identified · · [ NickServ (ident@network.org) ] STATUS <somenick> 0 offline · · [ NickServ (ident@netwo...
# Allow identical messages in the mode queue? set double-mode 0 # Allow identical messages in the server queue? set double-server 0 # Allow identical messages in the help queue? set double-help 0 here is a short example of whats happens when a DEOP occurs: · · ChanMode: DvD-Rom sets mode [ -o ] Cd-R...
1) change auth var back to 1 2) add the code below to the script bind msg o auth msg:auth proc msg:auth {nick uhost hand arg} { set pass [lindex $arg 0] if {[passwdok $hand $pass]} { set auth "1" } } PS. this is not the perfect solution, you should use flag cookie ie: auth messaging adds a...