Search found 3 matches

by ihaveSEN
Sat Nov 18, 2023 9:09 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Increase Stats based on number of Occurrences
Replies: 4
Views: 548

Re: Increase Stats based on number of Occurrences

Alright, thank you.

I will take some time to sit with the code but I think my problem has been solved for now.

Thank you very much.
by ihaveSEN
Sat Nov 18, 2023 12:04 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Increase Stats based on number of Occurrences
Replies: 4
Views: 548

Re: Increase Stats based on number of Occurrences

Thank you for your reply. I have input this part of the script: ##define slot 0~4 as string before start## default slot = ["undefined"]*5 ##Actual code to assign class to slots 0~4## label start: $ day = 1 while day < 6: menu: "Select course for day [day]." "Class A": $...
by ihaveSEN
Fri Nov 17, 2023 8:38 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Increase Stats based on number of Occurrences
Replies: 4
Views: 548

[Solved] Increase Stats based on number of Occurrences

Hello. Hopefully this makes sense. Currently, I have made a system where player can choose from a list of classes, and their stat increase is based on which type of classes they chose as well as the number of classes chosen. This is how it is coded currently: (1) Slots 1~5 defined at the beginning o...