hi ! the server tells this command is wrong but idk how to fix it, do you guys know what’s wrong ?
if (dressing_game is “Outfit 1”) { @ALEK changes into classic n bag for school
} elif (dressing_game is “Outfit 2”) { @ALEK changes classic n bag for school 2
} elif (dressing_game is “Outfit 3”) { @ALEK changes into classic n bag for school 3
} else { @ALEK changes into classic n bag for school 4
}
Okay I see the problem here. “dressing_game” is the label, not the choice name. To fix this, all you have to do is put something in brackets next to “choice” and use that in the elif code instead of dressing_game. Does that make sense or do you want me to give you an example?
label dressing_game
CHARACTER (animation)
What do I want to wear?
choice (Outfit_choice)
“Outfit 1”{
(code for this outfit)
}
“Outfit 2”{
(code for this outfit)
}
“Outfit 3”{
(code for this outfit)
}
“Outfit 4”{
(code for this outfit)
}
if (Outfit_choice is “Outfit 1”) {
(code for this option)
}
elif (Outfit_choice is “Outfit 2”){
(code for this option)
}
elif (Outfit_choice is “Outfit 3”){
(code for this option)
}
else {
(code for this option)
}
Does that make any more sense? The bits in bold have to be the same was what I was trying to say.