mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Feb 2003
Posts: 1
N
NewB Offline OP
Mostly harmless
OP Offline
Mostly harmless
N
Joined: Feb 2003
Posts: 1
I am lookin for a script i can run to periodically display a message on my channel. Any help is greatly appreciated !! confused

Joined: Dec 2002
Posts: 3,138
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 3,138
Use /timer 0 900 msg #channel Message. That would message #channel the word "Message" every 900 seconds (15 minutes). The timer will turn off when you disconnect, though, and will also continue when you are not on the channel.

To have the timer activated automatically when you join, and turned off when you leave use this:
Code:
on *:JOIN:[color:green]#channel[/color]:if ( $nick == $me ) timerm $+ # 0 900 msg # [color:green]Message[/color]
on *:PART:[color:green]#channel[/color]:if ( $nick == $me ) timerm $+ # off


Link Copied to Clipboard