ID:140573
 

switch(input("Which Village you Want to Join?", text) in list ("Leaf","Sand","Sound","Grass","Rain","Cloud","Mist","Rock","Waterfall","Snow"))
if("Leaf")
usr.leafS=1
usr.mistS=0
usr.soundS=0
usr.earthS=0
usr.sandS=0
usr.rainS=0
usr.grassS=0
usr.lightningS=0
usr.snowS=0
usr.missingS=0
usr.villageselected=1
usr.Village="Leaf"
usr.waterfallS=0
switch(input("Which Race you Want? Ps! One Change?", text) in list ("Uzumaki",)
if("Uzumaki") //Problem here
usr.clany = 1
usr<<"You are now a Clone specialist!"
usr.NonClan=0
usr.Realplayer = 1
usr.human = 1
usr.Clan = "Uzumaki"
usr.Inuzuka=0
usr.Gaaraclan=0
usr.Kaguya=0
usr.Hyuuga=0
usr.Nara=0
usr.Medical=0
usr.Uchiha=0
usr.Aburame=0
usr.Akimichi = 0
usr.Kamizuri=0
usr.Tenten=0
usr.Uzumaki=1
usr.CS=0
usr.bit=0
usr.Kyuubi=1
usr.loc = locate(10,7,47)


Problem description:

I got a error thats says if: missing comma ',' or right -paren ')'
But i can't see that i miss it.
Firewood wrote:
    switch(input("Which Race you Want? Ps! One Change?", text) in list ("Uzumaki",)



Your problem lies here. You have a comma after "Uzumaki", which should not be there. You also need to add another right -paren ')'

    switch(input("Which Race you Want? Ps! One Change?", text) in list ("Uzumaki"))


In response to Calus CoRPS
Tnx for the Help =)
In response to Calus CoRPS
Calus CoRPS wrote:
Your problem lies here. You have a comma after "Uzumaki", which should not be there.

Note that while an extra or missing paren (or a missing comma) is an issue, one extra comma isn't.