How To Add Points For A Certain Clothing Choice

Hey guys, I need some help with adding points for a certain clothing option. I have the first part figured out, but I want to be able to show the readers how many points are added on in the readerMessage bubble. :two_hearts:

Here is my script…

KYE (talk_think_neutral)
What do I want to wear to college?

choice (OUTFIT_1)
“Bodysuit” {
@KYE changes into Kye School1
@KYE is dustoff_neutral_loop
@GOOD +1
} “All Dark” {
@KYE changes into Kye School2
@KYE is dustoff_neutral_loop
@BAD +2
} “Street Racer” {
@KYE changes into Kye School3
@KYE is dustoff_neutral_loop
@BAD +1
}

    KYE (talk_think_neutral)
Do I want to wear this one?

choice
“YESSS!” {

} “Ewww no” {
goto dressing_game_1
}

if (GOOD = 1) {

readerMessage |italic, outline:red, color:red| GOOD +1

} elif (BAD = 1) {

readerMessage |italic, outline:red, color:red| BAD +1

} else (BAD = 2) {

readerMessage |italic, outline:red, color:red| BAD +2
}

I’ve put the bit that doesn’t work in bold. :revolving_hearts:
Thanks x

1 Like

Hey! Else has to always be empty. Just do elif two times or how many times you need it. :relaxed: :blob_hearts:

1 Like

the way you have the point it cant because you have goto sending reader back to that choiceso he can gain all it points together…and you do not need the if else actually.

I will redo it just gimme second

1 Like

choice (OUTFIT_1)
“Bodysuit” {
@KYE changes into Kye School1
@KYE is dustoff_neutral_loop
KYE (talk_think_neutral)
Do I want to wear this one?
choice
“YESSS!” {
@GOOD +1
readerMessage |italic, outline:red, color:red| GOOD +1
} “Ewww no” {
goto dressing_game_1
}
} “All Dark” {
@KYE changes into Kye School2
@KYE is dustoff_neutral_loop
KYE (talk_think_neutral)
Do I want to wear this one?
choice
“YESSS!” {
@BAD +2
readerMessage |italic, outline:red, color:red| BAD +2
} “Ewww no” {
goto dressing_game_1
}
} “Street Racer” {
@KYE changes into Kye School3
@KYE is dustoff_neutral_loop
KYE (talk_think_neutral)
Do I want to wear this one?
choice
“YESSS!” {
@BAD +1
readerMessage |italic, outline:red, color:red| GOOD +1
} “Ewww no” {
goto dressing_game_1
}
}

2 Likes

thanks xx

1 Like

tysm I’ll try this :revolving_hearts:

1 Like

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