Guest User

Untitled

a guest
Sep 14th, 2018
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
TCL 0.75 KB | None | 0 0
  1. #set the channel you want the script to work on here
  2. set mychan #channel
  3.  
  4. bind pub - !rules pub_rules
  5.  
  6. proc pub_rules {nick mask hand channel args} {
  7.     global rules
  8.     set rules {
  9.         No swearing, no colors, no CAPS
  10.         No racism, no flooding, no unauthorized bots to be parked here
  11.         Don't ask for translations unless you know someone in the channel.
  12.         If that's the case - just ask them privately.
  13.         In general - don't be a lamer, simply behave and treat people with respect.
  14.         Abuse of these rules will get you banned. Excessive abuse gets your ISP/Domain banned.
  15.         These are just the general rules, not ALL of the rules, i rely on your common sense.
  16.     }
  17.     if {$channel = $mychan} {
  18.         foreach _ [split $rules \n] {
  19.             puthelp "PRIVMSG $channel :$_"
  20.         }
  21.     }
  22. }
Add Comment
Please, Sign In to add comment