ID:158853
 
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
If you can't see something you must set the mouse_opacity variable to allow for click actions to be processed. You can check mouse_opacity in the reference (F1 in Dream Maker).
Don't use goto. A do-while loop is appropriate, here:

do
usr.name = etc.
while(name in bad_names)