mIRC Home    About    Download    Register    News    Help

Print Thread
F
flup
flup
F
Goto:
Tools > Popups and find:

.Kick:/kick # $$
.Kick (why):/kick # $$1 $$?="Reason:"


Replace this with:
.Kick:/kick # $$1 (Kick Count: $calc(%kickcount + 1) ) | set %kickcount $calc(%kickcount + 1)
.Kick (why):/kick # $$1 $$?="Reason:" (Kick Count: $calc(%kickcount + 1) ) | set %kickcount $calc(%kickcount + 1)

Nou if you want to add to your own kick script the kickcount, simply add: (Kick Count: $calc(%kickcount + 1) ) | set %kickcount $calc(%kickcount + 1)
on the end of kick laugh

Simple but it works laugh

Oh yeah, dont forget to:
set %kickcount 0
Before start kicing smile

L
listner
listner
L
Here's an idea (for the remote section):

on *:START: {
if ( !%kickcount ) { set %kickcount 0 }
}

menu nicklist {
.KickCount: {
inc %kickcount
.kick # $$1 Bye! ( $ord( %kickcount ) kick)
}
.KickCount(Why): {
inc %kickcount
.kick # $$1 $$?="Reason:" ( $ord( %kickcount ) kick)
}
}

Whatcha think? smile

Listner

F
flup
flup
F
Could be, but in that case it set's everytime %kickcounter to 0 doesn't it?

T
toe_cutter
toe_cutter
T
If %kickcounter doesnt exist it sets it to 0.. therefore the ! just before it (!%kickcounter)

The ! negates whatever option

F
flup
flup
F
Ok ty wink


Link Copied to Clipboard