Guest User

Untitled

a guest
Oct 20th, 2017
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 0.43 KB | None | 0 0
  1. on *:text:*:?: {
  2.   var %i 1
  3.   while (%i <= $lines(c:\mIRC\allowed.txt)) {
  4.     if (($nick == $read(c:\mIRC\allowed.txt,%i)) && (%pms == OFF)) {
  5.       .msg $nick Hey $nick $+ ! I have received your PM please wait a minute.
  6.       halt
  7.     }
  8.     else (($nick != $read(c:\mIRC\allowed.txt,%i)) && (%pms == OFF)) {
  9.       .msg $nick Sorry, $nick $+ , but you are not on my approved user list. }
  10.       halt
  11.     }
  12.  
  13.     inc %i
  14.   }
  15. }
Add Comment
Please, Sign In to add comment