anon

Untitled

Mar 26th, 2010
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 0.93 KB | None | 0 0
  1. on *:text:!id*:#:{
  2.   if ($readini snippets\users\users.db $nick registered == $null) { .notice $nick you are not registered please register. | return }
  3.   if ($readini snippets\users\users.db $nick level < 300) { .notice $nick Access Denied your access level is less than level required to use this command. | return }
  4.   If ($readini snippets\users\users.db $nick id == $null) { .notice $nick You have not identified or logged in to use this command, Please login first | return }
  5.   if ($network == AusWave) { .msg nickop identify pass }
  6.   if ($network == Oldschool-irc) { .msg nickserv identify pass }
  7.   if ($network == Life-Via-IRC) { .msg nickserv identify pass }
  8.   if ($network == Jmeeting) { .msg nickerv identify pass }
  9.   on *:notice:*accepted*:*:{
  10.     .notice $nick You have identified to services on $network $+ .
  11.   }
  12.   on *:notice:*incorrect*:*:{
  13.     .notice $nick You have failed to identify to services on $network $+ .
  14.   }  
  15. }
Add Comment
Please, Sign In to add comment