cd102f9d-370a-4bda-b6ea-ca42288f619c1.0
msg ("What is your name?")
get input {
player.alias = result
msg (player.alias)
show menu ("What is your gender?", split ("male;female" , ";"), false) {
player.gender = result
show menu ("What is your race?", split ("human;elf;dwarf" , ";"), false) {
player.race = result
show menu ("What is your class?", split ("warrior;cleric;mage;thief" , ";"), false) {
player.class = result
msg (player.alias + " is a " + LCase (player.gender) + " " + LCase (player.race) + " " + LCase (player.class) + ".")
player.strength = 10
}
}
}
}