Help with Point System Error

I’m stuck here, and i’m pretty sure i have the coding right cause i followed dara amarie’s template. Unless i’m overlooking something.

The error says: “Unexpected Expression: did you leave out the word “choice”, or forget to put a character’s name in all caps?”

The code in question:

if (YOU =1) {
@YOU changes into you0
}
elif (YOU =2) {
@YOU changes into you1
}
else (YOU =3) {
@YOU changes into you3
}

else shouldn’t have any condition

so it’s either

if (YOU =1) {
@YOU changes into you0
}
elif (YOU =2) {
@YOU changes into you1
}
else {
@YOU changes into you3
}

or

if (YOU =1) {
@YOU changes into you0
}
elif (YOU =2) {
@YOU changes into you1
}
elif (YOU =3) {
@YOU changes into you3
}

THANK YOu

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.