ID:148651
 
how would i make a reference var to verify the following choice:
/mob.client/New()
input("What job would you like to have?" in list("Construction worker","Metro worker"))

I have my reasons for not using mob/Login()
Ok, I can point out a few things wrong here. Mainly how youve set the input proc up.
It should be:
input("What job would you like to have?") in list("Construction Worker","Metro Worker")

Then to make a var equal the choice they select, you simply have the var = the input proc.
So it would look something like this:
variable = input("What job would you like to have?") in list("Construction Worker","Metro Worker")


Make sure that you define the variable first. Also, Im pretty sure that /mob.client/New() should be client/New().
Also, you should put a ..() at the start of the proc.
-DogMan

[Edit: I forgot to add a ..() stuff]