mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Apr 2024
Posts: 2
L
Bowl of petunias
OP Offline
Bowl of petunias
L
Joined: Apr 2024
Posts: 2
Dear Sir / Madam

please help how to write timer in mirc script
i try writein status " /timer 3 5 msg #chan This test message using timer " <<< it work well
but not work when i write in remote (script area)

please help how to do that

i want to post a message in my channel every 30 minutes

thank you

Joined: Jan 2012
Posts: 302
Pan-dimensional mouse
Offline
Pan-dimensional mouse
Joined: Jan 2012
Posts: 302
Obviously, to do this you need to create a script that will do what you want.

To get started, try reading/studying the help documentation: https://www.mirc.com/help/html/index.html?remote.html

In addition, something similar using a timer has already been discussed in the next forum thread: #Post272454

If after reading the information in the links you still have difficulties creating a script or it is not exactly what you want to do, then try to describe your idea in more detail, as well as provide text examples/screenshots/handwritten drawing/scheme on a sheet of paper or something else, so that we understand exactly what you want to do.


🌐 http://forum.epicnet.ru 📜 irc.epicnet.ru 6667 #Code | mIRC scripts, help, discuss, examples
Joined: Apr 2024
Posts: 2
L
Bowl of petunias
OP Offline
Bowl of petunias
L
Joined: Apr 2024
Posts: 2
Dear Epic,

thank you for your reply ,
i already see all link you give to me

script not working
{
/timer 0 900 msg #" your channel " "your messages"
/timer 1 10 msg #" your channel " "your messages"
}

and changes to

on *:connect:{
if ($network == "your server") {
/timer 0 900 msg #" your channel " "your messages"
/timer 1 10 msg #" your channel " "your messages"
}
}

my script is working well now

thank you


Link Copied to Clipboard