How to add an option to buy points for gems?

Usually in stories with point systems you can buy more points if you’re doing real bad, but I can’t find a template.

Somebody saaaaave meee.

label topping_points
NARRATOR
Would you like to add more points?

choice (add_points)
GEMS:5"Add 2 pointname points."{
@pointname +2
goto topping_points

}GEMS:5"Add 2 pointname points."{
@pointname +2
goto topping_points

}“No thank you.”{

@pause for a beat

}

try that

1 Like

Thank you!
I mixed yours with Dara Amarie´s template for author support.
I also changed the name of the choice “choice (points_name)” so it would track in the dashboard

label topping_points
NARRATOR
Would you like to buy name points?

choice (points_name)
GEMS:5 “1 point.”{
@NAME +1

readerMessage NAME +1
NARRATOR
Here ya go! Thank you for your support!

goto topping_points

}GEMS:8 “2 points.”{
@NAME +2

readerMessage NAME +2
NARRATOR
Here ya go! Thank you for your support!

goto topping_points

} “No, thank you.”{
NARRATOR
No worries! Thank you for reading!
}

2 Likes

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