Search found 7 matches

by Schmoogin
Wed Jul 31, 2019 4:14 pm
Forum: Ren'Py Questions and Announcements
Topic: how to implement the option to change player name and pronouns?
Replies: 1
Views: 374

how to implement the option to change player name and pronouns?

Heyo. So. I'm working with persistent data for both the player name and pronouns because I want the game to remember both for the entire playthrough (asking for them every time could get annoying for the player, after all); however, I want to have an option on the home menu to change the name and pr...
by Schmoogin
Thu Mar 08, 2018 3:54 pm
Forum: Ren'Py Questions and Announcements
Topic: what on earth did I do?! save/load erase failure
Replies: 4
Views: 639

Re: what on earth did I do?! save/load erase failure

ooooh! that'll help a lot i think! thank you!
by Schmoogin
Wed Mar 07, 2018 11:08 pm
Forum: Ren'Py Questions and Announcements
Topic: what on earth did I do?! save/load erase failure
Replies: 4
Views: 639

Re: what on earth did I do?! save/load erase failure

thank you so much!!

and dont worry i know. it's mean to be a sacrifice (that the player will want to make if I'm good enough at writing)

the routes will be relatively short. Like less than an hour each.

again, thank you!
by Schmoogin
Wed Mar 07, 2018 9:23 pm
Forum: Ren'Py Questions and Announcements
Topic: what on earth did I do?! save/load erase failure
Replies: 4
Views: 639

what on earth did I do?! save/load erase failure

sooo to keep it short, I want, for plot reasons, the player to be able to forfeit their ability to save/load the game in exchange for a favor from one of the characters. I need the player to be able to save/load up to this point, so erasing the ability to save altogether is out of the question. this...
by Schmoogin
Wed Mar 07, 2018 4:37 pm
Forum: Ren'Py Questions and Announcements
Topic: persistent data syntax error?
Replies: 2
Views: 373

Re: persistent data syntax error?

When comparing, you need two equal signs: if persistent.allendings == 2: This is a Python thing. If you intend to use Ren'Py to its fullest, I suggest you do at least some basic tutorials for Python. thank you! I thought I had tried that. Maybe I had left a different error that made the == not work...
by Schmoogin
Wed Mar 07, 2018 4:31 pm
Forum: Ren'Py Questions and Announcements
Topic: can I disable the save/load function after a certain point in the game?
Replies: 2
Views: 506

can I disable the save/load function after a certain point in the game?

So, for plot reasons, I want to disable the save/load function after the player gets to a certain plot point. I'll call it point L. However, i don't wanna disable the save/load UNTIL the player reaches point L. is there a way to do this?

thank you for any help! :D
by Schmoogin
Tue Mar 06, 2018 10:48 pm
Forum: Ren'Py Questions and Announcements
Topic: persistent data syntax error?
Replies: 2
Views: 373

persistent data syntax error?

I want to have it so a certain variable can be raised through multiple playthroughs, but I'm getting a syntax error. right now, it's this: label start: if persistent.allendings = 2: $ persistent.fullend = True I'm getting a syntax error on the "if persistent.allendings = 2:" line. what am ...