proc
StartGame()
switch(Game)
if("Hide 'n Seek")
world << "<b> [usr] is it! You have 15 seconds to hide!"
usr.verbs+=/mob/special/verb/Tag
usr.sight=1
usr.nomove=1
sleep(150)
world<<"<font color=red>[usr] says: READY OR NOT, HERE I COME!</font>"
usr.IT = 1
var/Hides = 1
usr.sight=0
usr.nomove=0
if(Hides)
if(!IT)
nomove = 1
Problem description: Mini-Game Tutorial.dm:53:error:IT:undefined var
Mini-Game Tutorial.dm:54:error:nomove:undefined var
No big surprise, really.. What I'm trying to do is freeze all of the players except the IT (wich is what the usr.IT = 1 takes care of), now I just need to know how to "name" all of those people..
Lummox JR