ID:156903
 
How could i go about making the player pick his/her handedness from the start,

I cant get switch to work, i was wondering if anyone could give me a script to tell me how.

Thank you for your time.
What do you mean by handedness?
Also you could use input, if you assigning something to a variable you don't need switch.
var/handedness = input("Choose") in list("Cake","Pie")+"Cancel"
if(handedness=="Cancel") return
In response to Leur
Oh never mind, i had my hunger loop looping before the variable was set. That explains a lot, is there a way to loop and run the variable check without putting it into the same proc?
In response to Darkology
Darkology wrote:
Oh never mind, i had my hunger loop looping before the variable was set. That explains a lot, is there a way to loop and run the variable check without putting it into the same proc?

Whatever that means, yes, there probably is a way of doing that.