/*Global List of Administrators*/
var/admin = list("Dead_Demon")
/*Global List of Moderators*/
var/mod = list("zomg none")
/*Define the world*/
world
name="Sanctuary"
mob = /mob/
turf = /turf/
mob
Login()
if(src.key == admin[1])
world << "ADMIN HERE"
..()
verb
Say(msg as text)
world << "[msg] "
Problem description:
Well, I've decided to try and attempt to actually make a BYOND Game this time, and not give up on it for once. And, like always, when one doesn't keep up with the language, one tends to make silly little mistakes, like I am sure there is here.
I get no error output when I run this little snippet, but when I log in with my key Dead_Demon, I get no message that says "ADMIN HERE"
So, what is my silly little mistake that I have overlooked?