mIRC Home    About    Download    Register    News    Help

Print Thread
#84761 31/05/04 03:13 PM
Joined: Apr 2004
Posts: 18
M
McFish Offline OP
Pikka bird
OP Offline
Pikka bird
M
Joined: Apr 2004
Posts: 18
How can i use a timer to take the Channel Limiter delayed in 2 mins with this :

on *:join:#channel { dolimit }
on *:part:#channel { dolimit }
on *:quit:#channel { dolimit }
alias dolimit {
mode #channel +l $calc($nick(#channel,0) + 2)
}



Thank You !

Joined: Mar 2004
Posts: 108
X
Vogon poet
Offline
Vogon poet
X
Joined: Mar 2004
Posts: 108
on *:join:#channel:{ dolimit }
on *:part:#channel:{ timerlimit off }
on *:quit:{ timerlimit off }
alias dolimit {
timerlimit 0 120 mode #channel +l $calc($nick(#channel,0) + 2)
}

the above will check every 2 minutes while you remain in the channel and halt the timer when you part or quit. replace ALL #channel's with the channel you wish it to run on of course smile

hope it helps - cheers


sometimes these are as bad as quit messages :tongue:
Joined: Dec 2002
Posts: 1,541
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Dec 2002
Posts: 1,541
slight change there:

on me:*:part:#channel:{ timerlimit off }

Otherwise it'll halt the timer for ALL parts not just you


Those who fail history are doomed to repeat it

Link Copied to Clipboard