small IRC script

GB.Arkady
01-17-2003, 06:00 PM
new to scripting for IRC so i'm trying to learn the basics.

If i wanted a script that just counted down out loud and then did an action, like log me off, or kick someone, how would i write that?

yeah it's a stupid script, but i'm ignorant to scripting too :D

Ark

iNVAR
01-17-2003, 06:21 PM
here, just some piece of crap i tossed together

alias countdown {
/set %countdown $1
/timercountdown1 $1 1 /counthelp # $2-
/timercountdown2 1 $1 $2-
}

alias counthelp {
/msg $1 %countdown secs until $2-
/dec %countdown
}

type /countdown <number of seconds> <your action>

ie

/countdown 60 /kick #tech invar

and it'll announce in the current channel every second for 60 seconds that it's going to /kick #tech invar soon.

modify it for your own use, whatever. :)