Hehe ok.

If I may make a suggestion for your script. You can really save a lot of redundant code by making stuff modular. For example:
Code:
  
alias banuser {
  if ($me isop $active) { ban -k $1 $2 $$input(Enter reason for kick/ban of " $+ $1 $+ ":,egqyq,Dae's Ban Script) }
}
 [color:red]  [/color] 
menu nicklist {
  Dae's Kick/Ban Script
  .Kick/Ban (own reason)
  ..0. $address($1,0) : banuser $1 0
  ..1. $address($1,1) : banuser $1 1
  ..2. $address($1,2) : banuser $1 2
  ..3. $address($1,3) : banuser $1 3
  ..4. $address($1,4) : banuser $1 4
  ..5. $address($1,5) : banuser $1 5
  ..6. $address($1,6) : banuser $1 6
  ..7. $address($1,7) : banuser $1 7
  ..8. $address($1,8) : banuser $1 8
  ..9. $address($1,9) : banuser $1 9
}

What it does is pass the parameters $1 (nickname) and the mask number (e.g. 2) to the alias banuser, which takes care of the rest. That way you don't have to repeat that long line of code every time, but you can simply call that 1 alias. Also added a check for op status before banning.


Greets

Last edited by FiberOPtics; 23/06/04 10:08 PM.

Gone.