mob/verb/create_character()
if(fexists(1))
. = ..()
if(fexists(0))
usr.name = input("Choose a name for your character.",
"Your Name",
usr.name)
usr.gender = input("Select a gender for your character.",
"Your Gender",
usr.gender) in list("male","female","neuter")
usr.icon = input("Select an icon for your character.",
"Your Icon",
usr.icon) in list('human.dmi','wizard.dmi','barbarian.dmi')
usr.desc = input("Set a description for your character.",
"Your Description",
usr.desc)
usr.icon = input("Choose your character's skin color.",
"Your Skin Color",
usr.icon) in list('black.dmi','brown.dmi','tan.dmi','caucasian.dmi','white.dmi')
Problem description: It says there is inconsistent indentation on all of the usr. tabs but I don't see the problem.
For example:
The same basically goes with everything else. Make sure when you're dealing with "," (in lists or proc arguments) that the "\" goes after the ",".