Advertisement
illpastethat

Invite, except list

Mar 19th, 2011
449
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 0.52 KB | None | 0 0
  1. exceptlist {
  2.   ;add users that you want to keep on the except list
  3.   return Kerrbear!*@*,Jigsaw!*@*,Kanashii!*@*,Huleo!*@*
  4. }
  5.  
  6.  
  7. raw 348:*: {
  8.   if (!$istok($exceptlist,$3,44)) {
  9.     mode $2 -e $3
  10.   }
  11. }
  12.  
  13. invitelist {
  14.   ;add users that you want to keep on the invite list
  15.   return Kerrbear!*@*,Jigsaw!*@*,Kanashii!*@*,Huleo!*@*
  16. }
  17.  
  18.  
  19. raw 346:*: {
  20.   echo -a $3
  21.   if (!$istok($invitelist,$3,44)) {
  22.     mode $2 -e $3
  23.   }
  24. }
  25.  
  26. on *:join:#stars: {
  27.   if ($nick == $me) {
  28.     mode $chan +e
  29.     mode $chan +I
  30.   }
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement