Advertisement
illpastethat

nick list garen

Aug 10th, 2014
551
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 0.63 KB | None | 0 0
  1. on *:TEXT:!addme*:#: {
  2.   if ($isupper($left($regsubex($nick,/(^([^a-z]+))/ig,),1)) == $true) {
  3.     set %nicklist $addtok(%nicklist,$nick,44)
  4.     msg $chan Added $nick to the nick list
  5.   }
  6. }
  7. on *:text:!remove*:#: {
  8.   if (!$2) { msg $chan $nick $+ , Try !remove <nick> }
  9.   else { set %nicklist $remtok(%nicklist,$2,44) | msg $chan Added $2 to the nick list }
  10. }
  11. on *:text:!list:#: {
  12.   msg $chan Nicks: $replace(%nicklist,$chr(44),$chr(44) $+ $chr(32))
  13. }
  14. on *:join:#: {
  15. if ($isupper($left($regsubex($nick,/(^([^a-z]+))/ig,),1)) == $true) {
  16.     set %nicklist $addtok(%nicklist,$nick,44)
  17.     msg $chan Added $nick to the nick list
  18.   }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement