mob/var/list/races = list("Man","Dwarf","Elf","Halfling")
mob/var/race
mob
Login()
Move(locate("Temple of Calandrial"))
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.race = input("Choose a race for your character.","Your Race",usr.race) in list("Man","Dwarf","Elf","Halfling")
I want to know how I would make classes for each different race. I tried:
if(usr.race == "Race of Men")
usr.class = input(...blah)
But when I run it, nothing comes up... help
A better way to accomplish what you want would be to add to the list that they select from.