turf/New
density = 1
Click()
switch(input("Would you like to be a human or pokemon?", "Character") in list ("Human","Pokemon"))
if("Human")
usr.verbs += /mob/verb/OOC
usr.verbs += /mob/verb/Tell
usr.verbs += /mob/verb/Emote
usr.verbs += /mob/verb/Say
usr.cansave=1
usr.trainer=1
switch(input("Who would you like to be?", "Human") in list ("Lunick","Solana","Male Ranger"))
if("Lunick")
usr.icon='people.dmi'
usr.loc=locate(1,1,1)
if("Male Ranger")
usr.loc=locate(1,1,1)
usr.icon='people.dmi'
if("Solana")
usr.loc=locate(1,1,1)
usr.icon='people.dmi'
if("Cancel")
return
Problem description: I am trying to make it so the login on my game will work so people can choose who they want to be , but the code isn't working. Is there somethin wrong with it?
P.S.: I have a title and buttons for the new, load, and delete.