New char button it won't do anything if there isn't a
save file for that person. how would i get it to come up if there isn't one,
here is the coding in problem
turf/NewChar
icon = 'New.bmp'
Click()
if (fexists("players/[usr.ckey].sav"))
switch(alert("If you continue with a new character, your previous character will be erased. Do you wish to continue?","[world.name]","Yes","No"))
if ("Yes")
usr << "... Ok... You can now create a new character."
usr.CreateChar()
return ..()
if ("No")
usr << "Ok, Please reconnect for you are being disconnected now and then choose \"LOAD GAME\""
del(usr)
return ..()
else
usr.CreateChar()
return ..()
..()