ID:142041
 
Code:
Leave
icon = 'Leave Button.png'
Click()
switch(input("This will boot you from the game in order for you to reconnect.") in list ("Leave","Return")
if("Leave")
del(usr)

if("Return")
else
return


Problem description:

error: if: missing comma ',' or right-paren ')'

You are missing a ) on the end of your switch statement.
In response to A.T.H.K
thx, I am blind