Hi

You can start 2 timers at the same time, and you can put the commands that you want to make after them finish.

.TimerJCWarning $+ $nick 1 150 msg $chan $nick This is your 2nd and last warning. Change your nick now.
.TimerJCKick $+ $nick 1 300 kick $chan $nick Message

Them you need to use the event on nick to check if the nick change his nick. And if he had, them you can halt the timers/timer

.timerJC* off

Like

on *:NICK: {
;if the exists
if ( $timer( $+( JcKick, $nick)) != $null ) {
;Stop all timers off that nick
$+( .Timer, JC, *, $nick) off
}
}

if the timer´s are not halted it´s becouse the nick have not change her nick. If he changes the mirc will detect that the timers belong to him and halt them.

Last edited by Miguel_A; 18/02/08 01:44 AM.