Advertisement
Seb

/unhide for mode +D

Seb
Aug 29th, 2016
421
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 0.71 KB | None | 0 0
  1. # /unhide alias made by Xaifas on undernet Long time ago.
  2. # Type /unhide to reveal all hidden userd under +D
  3. # Make sure to use this after +D is REMOVED (/mode #chan -D)
  4. ###########################################
  5.  
  6.  
  7. alias unhide {
  8.   hadd -mu4 noflood plx 1
  9.   .timer 1 0 names -d $chan
  10. }
  11.  
  12. raw 355:*:{
  13.   if ( $hget(noflood,plx) ) {
  14.     var %total = $numtok($4-,32)
  15.     hadd -mu15 user list $4-
  16.     var %x = $hget(user,0).item
  17.     while ( %x > 0 ) {
  18.       var %a = $gettok($hget(user,list),1-6,32)
  19.       .timer 1 0 mode $3 +vvvvvv %a
  20.       .timer 1 1 mode $3 -vvvvvv %a
  21.       hadd user list $gettok($hget(user,list),7-,32)
  22.       dec %x 6
  23.     }
  24.     HALT
  25.   }
  26. }
  27. raw 366:*:{ if ( $Hget(noflood,plx) ) { HALT } }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement