Ok .. try this .. must use both to put count in the reason
I used the kick alias and kick event because just
because you use the kick command doesn't mean it's
going to happen .. like if you're not opped or something.
So this way, it shows the kick count in the kick reason
but doesn't actually increase the count until the actual
kick event takes place.
Code:
on ME:*:KICK:#: {
  inc $+(%,kick-count.,#)
  inc %kick-count
}
alias kick {
  var %t = $iif(!%kick-count,0,%kick-count) + 1
  var %c = $iif(!$eval($+(%,kick-count.,$1),2),0,$eval($+(%,kick-count.,$1),2)) + 1
  kick $1-2 $iif($3 != $null,$3-,$2) $+(<,$ord(%c)) on $1 - $ord(%t) Total>
}


pasted below so you don't have to sort it

on ME:*:KICK:#: {
inc $+(%,kick-count.,#)
inc %kick-count
}
alias kick {
var %t = $iif(!%kick-count,0,%kick-count) + 1
var %c = $iif(!$eval($+(%,kick-count.,$1),2),0,$eval($+(%,kick-count.,$1),2)) + 1
kick $1-2 $iif($3 != $null,$3-,$2) $+(<,$ord(%c)) on $1 - $ord(%t) Total>
}

Last edited by EVH; 30/12/03 11:20 PM.