spaceman requested everyone having christmas hats admin verb for possible christmas event. it was possibly a joke I took seriosuly

This commit is contained in:
Tastyfish
2011-12-23 02:20:16 -05:00
parent d14b67782a
commit 8f53cb2d87
5 changed files with 28 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
var/global/gimmick_hat = null
// irreversable, for now
/client/proc/cmd_admin_christmas()
set category = "Fun"
set name = "Christmas Time"
if(!authenticated || !holder)
src << "Only administrators may use this command."
return
if(!gimmick_hat)
log_admin("[usr.key] has started Christmas!")
message_admins("<font color='blue'>[usr.key] has started Christmas!</font>")
// handle pre-existing hats
gimmick_hat = "santahat"
else
log_admin("[usr.key] has stopped Christmas!")
message_admins("<font color='blue'>[usr.key] has stopped Christmas!</font>")
// handle pre-existing hats
gimmick_hat = null