ID:147419
 
switch/input("BUy?") in list("yes","no")
if("yes")
return
if("no")
return


tells me missing expression
Fraon2 wrote:
switch/input("BUy?") in list("yes","no")
if("yes")
return
if("no")
return


tells me missing expression

switch(input("Buy?") in list("Yes","No"))
if("Yes") return
if("No") return
In response to Unknown Person
Thanks so much lol now do you think you could help me I put
Login()
usr.loc = locate(2,2,1)


and it says login undefined proc?

In response to Fraon2
mob/Login() instead of just Login()
In response to Unknown Person
thanks