Advertisement
anon

Untitled

Mar 25th, 2010
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 1.21 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.     if ($network == OldSchool-irc || $network == Life-Via-IRC || $network == Jmeeting) {
  11.       .notice $nick Successfully Identified to NickServ
  12.     }
  13.     else { .notice $nick Successfully Identified to NickOP }
  14.   }
  15.   on *:notice:*incorrect*:*:{
  16.     if ($network == OldSchool-irc || $network == Life-Via-IRC || $network == Jmeeting) {
  17.       .notice $nick Identification to NickServ failed.
  18.     }
  19.     else { .notice $nick Identification to NickOP failed. }
  20.   }  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement