mIRC Home    About    Download    Register    News    Help

Print Thread
#148054 29/04/06 01:42 AM
Joined: Apr 2006
Posts: 43
D
Ameglian cow
OP Offline
Ameglian cow
D
Joined: Apr 2006
Posts: 43
Well, As of yesterday ive been having many people being deleted off the ban list on my channel, But i dont know whos doing it so thats when i came up that i needed a anti remove ban script...

Bascily what this will do is when someone takes off a ban it it readd it. Any help??

#148055 29/04/06 01:56 AM
Joined: Aug 2005
Posts: 525
S
Fjord artisan
Offline
Fjord artisan
S
Joined: Aug 2005
Posts: 525
Code:
on @*:UNBAN:#:{
  mode $chan + $+ $str(b,$count($remove($1,-),b)) $2-
}

#148056 29/04/06 02:22 AM
Joined: Apr 2006
Posts: 43
D
Ameglian cow
OP Offline
Ameglian cow
D
Joined: Apr 2006
Posts: 43
Good it worked but how could i do it so only the nick BBFDave could "overwrite" this script meaning if i take off a ban the script wont interfer

#148057 29/04/06 02:39 AM
Joined: Nov 2005
Posts: 105
D
Vogon poet
Offline
Vogon poet
D
Joined: Nov 2005
Posts: 105
Just by editing the code you were already provided...
Code:
on @*:UNBAN:#:{
  if ($nick != BBFDave) mode $chan + $+ $str(b,$count($remove($1,-),b)) $2-
}


Link Copied to Clipboard