ID:147940
 
is there any way to modify this code to have a menu selection like New Character then it ask how shall you be known warrior also im trying to implement save coding but i cant without this having a menu or procs could someone modify this for me? *Thanks-In advance*

mob
Login()
usr<<sound('dreams.mid',1)
src.name = input("How shall you be known warrior?","Name") as null|text
var
list
sexes = list("Male","Female")
sex = input("Do you wish to be male or female?") in sexes
switch(sex)
if("Male")
var
list
male_classes = list("Male Warrior","Male Paladin","Male Scout","Male Necromancer1","Male Necromancer2","Male Sorceror","Male Ranger")
male_class = input("How shall you go forth upon your journey?") in male_classes
switch(male_class)
if("Male Warrior")
why not get a pre-done one and look at the code for it?
I think you can prompt for freeform text, like character names, if you use "input(bla) as text" instead of "input(bla) in someList".