ID:263152
 
Code:
mob/Continue
Continue
icon = 'continue.png'
density = 1
Click()
alert(usr,"[usr.name], Now you are going to choose your personal game setting.","??Voice??")
switch(input("Please choose your game difficulty.")in list("Easy","Nomral","Hard","Expert")
if("Easy")
alert("Your game will be on easy mode")


if("Normal")
alert("Your game will be on normal mode")


if("Hard"
alert("Your game will be on hard mode")


if("Expert"
alert("Your game will be on Expert mode")


Problem description:

why am i getting this error i see nothing wrong with it. I have all thr right commas and crap.
 switch(input("Please choose your game difficulty.")in list("Easy","Nomral","Hard","Expert"))


That should sort you out
In response to Yorae
Code:
turf/Continue
Continue
icon='continue.png'
density=1
Click()
alert(usr,"[usr.name], Now you are going to choose your personal game setting.","??Voice??")
switch(input("Please choose your game difficulty.")in list("Easy","Nomral","Hard","Expert"))
if("Easy")
alert("Your game will be on easy mode")


if("Normal")
alert("Your game will be on normal mode")


if("Hard")
alert("Your game will be on hard mode")


if("Expert")
alert("Your game will be on Expert mode")



Is this like a titlescreen button? I made it as a turf, I wasn't to sure how your game was. You didn't have the ")" at the end of "Hard" and "Normal".

-- Vancegetto
Look at Yorae's post. The thing about these errors is that the error line is usually before the given line.

- GhostAnime

PS: Next time, to check out the meaning of errors/how to fix, developers FAQ > Errors