area
TITLE
NEWGAME
layer = 999
Click()
NAME:
usr.name = input("What is your name?","Name") as text
if(usr.name in bad_names)
goto NAME
else
bad_names += usr.name
LOADGAME
layer = 999
Click()
var/savefile/S = new("saves/[usr.ckey]")
usr.Read(S)
usr.loc=locate(x,y,z)
DELETEGAME
layer = 999
Click()
var/savefile/S = new("saves/[usr.ckey]")
fdel(S)
return
I have that code...but when you click the area it doesn't do anything...is area even able to have the Click() proc?
Thanks!
-Nick