titan has his spamming little heart set on singing bottles of beer into a channel.
He spotted a script here http://www.99-bottles-of-beer.net/language-mirc-394.html
And requested some changes…. so here they are
You have two options:
To spam:
/beer
eg. /beer titan 10 20
Getting into trouble?
/beer.stop
;***************************************************
;* Beer Version 0.91 *******************************
;***************************************************
;* Writen by Freman aka Fremean *
;***************************************************
;* Please send comments/complaints to: *
;* http://fremnet.net/contact *
;* Note: Anything else won't even be opened, and *
;* spamming, selling, or sending junk to this addr *
;* will cause me to close it without a 2nd thought *
;* So, do the right thing and don't fuck it up for *
;* someone who needs it for legit purposes. *
;***************************************************
;* To catch me look for Freman/Fremean on Undernet *
;* If I'm online and around, I'll get back to you *
;* Home Chan(s): #Australia, #Ozchat *
;* You can also find me in #ign on EnterTheGame *
;***************************************************
alias beer {
set %beer.chan $1
set %beer.time $2
set %beer.bottles $3
/beer.drink
}
alias beer.drink {
if (%beer.bottles == 1) {
/msg %beer.chan One bottle of beer on the wall.
/msg %beer.chan One bottle of beer on the wall.
/msg %beer.chan One bottle of beer...
/msg %beer.chan Take it down, pass it around,
/msg %beer.chan No more bottles of beer on the wall.
unset %beer.bottles
unset %beer.chan
unset %beer.time
}
else {
/msg %beer.chan %beer.bottles bottles of beer on the wall.
/msg %beer.chan %beer.bottles bottles of beer...
/msg %beer.chan Take one down, pass it around,
dec %beer.bottles
if (%beer.bottles == 1) {
/msg %beer.chan one bottle of beer on the wall.
}
else {
/msg %beer.chan %beer.bottles bottles of beer on the wall.
}
.timerbeer 1 %beer.time beer.drink
}
}
alias beer.stop {
.timerbeer off
unset %beer.bottles
unset %beer.chan
unset %beer.time
}