ID:149587
 
Well, for some reason when I put the code in, I have it so Deadron's character handling is included, but when I run the world, it goes straight to asking what race I want. Here is what code I have for the login.

mob
Login()
if(usr.saved<1)
usr.Name=usr
switch(input("What race would you like to be?")in list("Human","Elf","Arlian","Troll","Dwarf","Halfling"))
if("Human")
usr.Race="Human"
Strength=12
Dexterity=11
Wisdom=11
Constitution=11
if("Elf")
usr.Race="Elf"
Strength=10
Dexterity=12
Wisdom=14
Constitution=10
if("Arlian")
usr.Race="Arlian"
Strength=11
Dexterity=12
Wisdom=11
Constitution=10
if("Troll")
usr.Race="Troll"
Strength=15
Dexterity=10
Wisdom=6
Constitution=15
if("Dwarf")
usr.Race="Dwarf"
Strength=14
Dexterity=10
Wisdom=10
Constitution=13
if("Halfling")
usr.Race="Halfling"
Strength=10
Dexterity=14
Wisdom=12
Constitution=9
usr << "Great, [usr] is now a [Race]! Many good fortunes to him."
view() << "[usr] is given live and is now /a [Race]."
usr.saved=1
TNL=usr.ExpR-Exp


I also have #include in there, but I can't figure out why it asks my race, can someone help?</1>