ID:294028
 
After the BYOND update my menu screen (new) doesn't seem to work anymore. It would be nice if someone would help me out. Please and thank you.


mob
proc
Newchar()
usr.name = input("What do you want your name to be") as text
usr.name="[usr.name]"
if(length(usr.name) == 0)
alert("You must select a name! It needs to be between 3 to 15 characters.")
return
if(length(usr.name) < 3)
alert("Your name is to short. It must be at least longer then 3 letters!")
return
if(length(usr.name) > 15)
alert("Your name is to long. The maxiumum letters is 15.")
return
else
usr.loc = locate(24,17,1)
client.perspective=EDGE_PERSPECTIVE
usr.AddName(usr.name)</3>
We don't offer this type of assistance. Please take all developer related queries to the Developer Forum. Please be sure to encase your code in <dm></dm> tags.