Advertisement
Wikked

mIRC user access

Oct 30th, 2014
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 1.71 KB | None | 0 0
  1. on *:TEXT:!aop add*:#: {
  2.   if ($me isop $chan) && ($nick isop $chan) {
  3.     /aop $3 $chan
  4.     .msg $chan  $+ $3 $+  Has Been Added To The Auto-Op List For  $+ $chan $+  By  $+ $nick $+ .
  5.   }
  6.   else .msg $chan [ $+ $nick $+ ]: Error, You are NOT an channel operator (@) on the channel!
  7. }
  8.  
  9. on *:TEXT:!aop del*:#: {
  10.   if ($me isop $chan) && ($nick isop $chan) {
  11.     /aop -r $3 $chan
  12.     .msg $chan  $+ $3 $+  Has Been Removed From The Auto-Op List.
  13.   }
  14.   else .msg $chan [ $+ $nick $+ ]: Error, You are NOT an channel operator (@) on the channel!
  15. }
  16.  
  17. on *:TEXT:!vop add*:#: {
  18.   if ($me isop $chan) && ($nick isop $chan) {
  19.     /avoice $3 $chan
  20.     .msg $chan  $+ $3 $+  Has Been Added To The Auto-Voice List For  $+ $chan $+  By  $+ $nick $+ .
  21.   }
  22.   else .msg $chan [ $+ $nick $+ ]: Error, You are NOT an channel operator (@) on the channel!
  23. }
  24.  
  25. on *:TEXT:!vop del*:#: {
  26.   if ($me isop $chan) && ($nick isop $chan) {
  27.     /avoice -r $3 $chan
  28.     .msg $chan  $+ $3 $+  Has Been Removed From The Auto-Voice List.
  29.   }
  30.   else .msg $chan [ $+ $nick $+ ]: Error, You are NOT an channel operator (@) on the channel!
  31. }
  32.  
  33. on *:TEXT:!protect add*:#: {
  34.   if ($me isop $chan) && ($nick isop $chan) {
  35.     /protect $3 $chan
  36.     .msg $chan  $+ $3 $+  Has Been Added To The Protect List For  $+ $chan $+  By  $+ $nick $+ .
  37.   }
  38.   else .msg $chan [ $+ $nick $+ ]: Error, You are NOT an channel operator (@) on the channel!
  39. }
  40.  
  41. on *:TEXT:!protect del*:#: {
  42.   if ($me isop $chan) && ($nick isop $chan) {
  43.     /protect -r $3 $chan
  44.     .msg $chan  $+ $3 $+  Has Been Removed From The Protect List.
  45.   }
  46.   else .msg $chan [ $+ $nick $+ ]: Error, You are NOT an channel operator (@) on the channel!
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement