Top

Popup Unban


mIRC Code
+ 0 likes
Please Register to submit score.
Bookmark and Share
Average Score  0.0 (of 0 scores)
Date Added  May 13, 2009
Last Updated  May 13, 2009
Tags  nicklist  popup  unban 

Introduction

So, I was getting into making a bunch of popups for my script, and decided I wanted one to unban a user. The problem was, getting the right mask that I banned, and all of that. So I made this.

All it does is save a little bit of time, by allowing you to right click, and it removes your latest ban on said user.

Grab the Code

alias cBans {
  var %% 0
  while (%% <= $ibl(#,0)) {
    if (($ibl(#,%%).by == $address($me,5)) && ($ibl(#,%%) iswm $address($1,5))) {
      mode $active -b $ibl($active,%%)
    }
    inc %%
}
}
menu nicklist {
Unban:/cBans $1
}

Comments

  (3)  RSS
WorldDMT
Comments: 171
 
mIRC Snippet:  Popup Unban
Posted on May 13, 2009 6:38 am
hi

u have one "}" needed on the alias after the inc %%





Anup
Comments: 3
 
mIRC Snippet:  Popup Unban
Posted on May 13, 2009 7:00 am
Yeah
Soulkeeper
Comments: 80
 
mIRC Snippet:  Popup Unban
Posted on May 13, 2009 6:59 pm
Fixed

Commenting Options

Register or Login to Hawkee.com or use your Facebook or Twitter account by clicking the corresponding button below.

  
Bottom