mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Dec 2003
Posts: 1
V
viranth Offline OP
Mostly harmless
OP Offline
Mostly harmless
V
Joined: Dec 2003
Posts: 1
Howdy.
Was wondering how you make a script that ping yourself every 10 minutes?

Like my start script has "on *:START:{" and was wondering if there might be something like on *Time:10" or something

Thanks for the help.

Joined: Sep 2003
Posts: 112
E
Vogon poet
Offline
Vogon poet
E
Joined: Sep 2003
Posts: 112
see /help /timer

Joined: Apr 2003
Posts: 85
K
Babel fish
Offline
Babel fish
K
Joined: Apr 2003
Posts: 85
on *:start: timer 0 600 ctcp $me PING

/timer is the command to start a timer
0 is the number of times to execute the command (0 means unlimited)
600 is 10 minutes (60sec x 10)
ctcp $me PING is the command to ping


--

katsklaw
Rather experienced Admin
Rather experienced mIRC Scripter
Amateur C Coder
Joined: Dec 2003
Posts: 33
M
Man Offline
Ameglian cow
Offline
Ameglian cow
M
Joined: Dec 2003
Posts: 33
You might want to use $!me cos if you change your nick the timer wont re-evaluate $me unless you pu a ! in


Link Copied to Clipboard