Timed Message!
Platform: mIRC
Published Jan 09, 2005
Updated Sep 04, 2008
Just a simple timed message that u can have a timed message in a channel u want or u cah have it in every channel u are in just click in the nicklist click on Timed message
dialog timed {
title "Timed Messages!"
size -1 -1 175 90
option dbu
text "timed message:" 1, 5 6 50 10
edit "" 2, 45 5 120 10,
text "Time inbetween each message" 4, 5 18 80 15
edit "" 5, 5 27 80 10
button "START" 6, 90 18 40 20
button "STOP" 7, 132 18 40 20
text "in which channels?" 8, 5 40 90 15
text "In Single Channel" 9, 5 53 90 15
edit "" 10, 50 50 90 10
text "OR......." 12, 5 70 70 15
radio "OR ... In All Channels!" 11, 50 67 70 15
}
on *:dialog:timed:sclick:6: {
if ($did(2) == $null) || ($did(5) == $null) {
echo -s Error: Message or time not set!
halt
}
if ($did(timed,11).state == 1) {
set %timed on
set %time $did(5)
set %message $did(2)
timer1 0 %time amsg %message
}
if ($did(10) != $null) {
set %chan $did(10)
set %timed on
set %time $did(5)
set %message $did(2)
timer1 0 %time msg %chan %message
}
}
on *:dialog:timed:sclick:7: {
if (%timed != on) {
echo -a Timed Message Is Not On!
halt
}
else {
timer1 off
echo -a Timed Message Halted!
}
}
menu nicklist {
Timed Message! { dialog -m timed timed }
}