Gender()
switch(input("What gender?") in list("male","female"))
if("male")
usr.icon = 'Costumes.dmi'
usr.icon_state = "batman"
usr.hp = 20
usr.maxhp = 20
usr.loc = locate(32,22,1)
if("female")
usr.icon = 'Costumes.dmi'
usr.icon_state = "cloak"
usr.hp = 20
usr.maxhp = 20
usr.loc = locate(32,22,1)
Problem description:
I don't know whats wrong it was working fine but then i accidently deleted some of it in the Female and know i have constant inconsistant indentations and ive tried reindenting,retyping,etc but no dice. Please help
Gender()