ID:144650
 
Code:
switch(input("Do you want to become a mixed raced warrior or a purebreed~~Note~~Mixed breeds only recieve some of that races abilities NOT all of them!", "Race Type") in list ("Pure","Mixed"))
("pure")
usr.pure = 1
usr.loc = locate(94,94,20)
("mixed")
usr.mixed = 1
usr.pure = 0


Problem description:

where it says
usr.pure = 1

it says expected expression....not sure what the hell thats supposed to mean...its right there...and src doesnt change anything either , I tried that and i tried to just use flick(usr,pure)...no luck...wanna help me out?
You need to have an if statement after the switch. Not just parantheses.
You're missing the 'if' part of your conditionals.
("pure") // Wrong.
if("pure") // Right.
In response to Popisfizzy
O jesus...can't believe i didnt see that...thx man!..damn im stupid...guess thats wat happens when u take a 4 month brake from coding