Advertisement
illpastethat

failtobeg multiple nicks Garen

Jul 30th, 2014
559
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. on *:JOIN:#:{
  2.   if ($islower($left($regsubex($nick,/(^([^a-z]+))/ig,),1)) == $true) {
  3.     set $+(%,subtoenter1.,$nick) $nick
  4.     set $+(%,room1.,$nick) $chan
  5.     timerbeg $+ $nick 1 10 failtobeg1 $nick $chan
  6.  
  7.   }
  8. }
  9.  
  10. on *:TEXT:*enter*:#: {
  11.   if ($($+(%,subtoenter1.,$nick),2) == $nick) {
  12.     timerbeg $+ $nick off
  13.     unset $+(%,subtoenter1.,$nick)
  14.     unset $+(%,room1.,$nick)
  15.     msg $chan $nick Strip and describe yourself, slut!
  16.   }
  17. }
  18.  
  19. alias failtobeg1 {
  20.   var %chan $2
  21.   var %nick $1
  22.   ban -u5 %chan %nick
  23.   kick %chan %nick Slaves must beg to enter.
  24.   timerunban $+ $nick 1 5 unban %chan %nick
  25.   unset $+(%,room1.,%nick)
  26.   unset $+(%,subtoenter1.,%nick)
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement