This does not tell anyone how the age is figured out, this only restates the scenario.l8night wrote:The age of the account is determined like this----
There can only be 300 accounts total on the shell server.
You sign up for an account and there are 299 accounts older than yours. another person gets an account and now there's 298 accounts older than yours, when there are 0 accounts older than your account it's gets deleted.
Code: Select all
exec mail -s "Account age" my@email.com < filename
Code: Select all
bind time - "05 05 * * *" proc:putquick
proc proc:putquick {} {
putquick "howold l8night"
}
bind pubm - At the moment there are * accounts older then l8night proc:gettext
proc proc:gettext {} {}
Code: Select all
proc proc:gettext { nick uhost handle channel text } {
regexp {there are (.*?) accounts older} $text match others
}
Code: Select all
putquick "PRIVMSG #channel :howold l8night"