ID:264613
 
Code:
turf/Titlescreen/New
density=1
icon='Blank.dmi'
mouse_opacity=2
Click()
switch(input(usr,"Please, Choose your Sex","Character Creation") in list ("Male","Female"))
if("Male")
usr.loc=locate(29,1,2)
usr.icon='Male1.dmi'

if("Female")
usr.loc=locate(29,1,2)
usr.icon='Female1.dmi'


Problem description: The Dream Maker dont send any error, but when i click the New Button nothing happens

Set its layer to 2 so it's above the background.
In response to Garthor
Nothing, it dont worked.
In response to Gohan Games
Did you override client/Click() and not call ..()?
In response to T3h P3ngu1n
Yes.
In response to Gohan Games
If you don't call ..() from client/Click() then it will never route the click to the object that you clicked.