chachin

Untitled

Mar 10th, 2013
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
TCL 0.28 KB | None | 0 0
  1. # Make a list of all bots handles
  2. set dot_bots "R2D2"
  3.  
  4. bind pub mn|mnf . pub_dot
  5.  
  6. proc pub_dot {nick uhost hand chan arg} {
  7.     global dot_bots
  8.     if {[string tolower $hand] ni [string tolower $dot_bots]} {
  9.         # A message sent by a manager or owner
  10.         putquick "PRIVMSG $chan :.."
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment