Benn Swagger

Well-Known Member
Aug 26, 2016
1,526
2,181
OMG !!! ... I'm okay old saves obsolete, but at least tell us that new save files didn't saved to main drive like any other Renpy games. I just played, exit, deleted folder, re-extract and played with original folder-no patches, all my saves are gone ! ... the reason I use fresh folder is because I kept CTD when MC found 2 obelisk in abandoned town. I have to found out that this game make save locally and has to be back up before deleting.

I'm done with this game. I'll be back for another year. Hope no more technical bs issue anymore.
 
Last edited:

lostraven

Engaged Member
Donor
Game Developer
Apr 27, 2017
3,025
13,701
OMG !!! ... I'm okay old saves obsolete, but at least tell us that new save files didn't saved to main drive like any other Renpy games. I just played, exit, deleted folder, re-extract and played with original folder-no patches, all my saves are gone ! ... the reason I use fresh folder is because I kept CTD when MC found 2 obelisk in abandoned town. I have to found out that this game make save locally and has to be back up before deleting.

I'm done with this game. I'll be back for another year. Hope no more technical bs issue anymore.
Well, we're actually working on dealing with save issues now. :coffee: Hopefully should have stuff sorted soon.
 

Argentus67

Member
Nov 19, 2021
114
137
How do you open the console menu please and thank you?
in the game file go to renpy\common and find a file called "00console.rpy", open it with any text editor like Notepad++ and Ctrl+F to change config.console = False to config.console = True. then save the file and open the game


P.S you can do these same steps to enable the console for almost all game that use renpy
 
  • Like
Reactions: Richh123

Richh123

Newbie
May 15, 2023
71
71
Thank you for that I got the Console menu Up. However what are the commands for health, Money and stats etc. Please and Thank you. yah i found it :pPPP
 
Last edited:

PhoenixRage23

Active Member
May 24, 2020
891
1,093
It seems that the ipatch doesn't do anything about changing relationships. The MC calls Regina "mother" but then states that his mother and Erika's mother both died. Unless the game gives a chance to actually to change the relationships to make better sense with the ipatch.

It seems I'm not the only one to make that statement. Had to go back a few pages using the search function to see the patch needs to be updated.
 

Anolas

Member
Jun 26, 2020
102
62
It seems that the ipatch doesn't do anything about changing relationships. The MC calls Regina "mother" but then states that his mother and Erika's mother both died. Unless the game gives a chance to actually to change the relationships to make better sense with the ipatch.

It seems I'm not the only one to make that statement. Had to go back a few pages using the search function to see the patch needs to be updated.
Unless the dev make an official one.
 
  • Like
Reactions: Manchild11

ChubbyFatBoy

Member
Aug 19, 2024
219
993
Well, we're actually working on dealing with save issues now. :coffee: Hopefully should have stuff sorted soon.
Pardon me good sir as I'm curious. Are you guys planning on doing something more special or extensive with Adara? Far as I can tell she's the main squeeze. So you'd think her oven would be one of the 1st to receive our unholy bun.
 
  • Haha
Reactions: D'waawwu

Shazam95

New Member
Dec 8, 2024
3
0
Not the variable, but I figured it out. Took a bit of fiddling to do so. All items, including gold are inventory items, so look up player_inv variable, then go into the list. It will have the list of items in your inventory, from there you can just change the values to whatever you want.

Bro what about skill points and other points
 

Mommysbuttslut

Forum Fanatic
Feb 19, 2021
4,191
10,273
Bro what about skill points and other points
Lol good luck with that. The skill points variables are extremely well hidden. You could follow this post to modify equipment stats to get bonus attributes and then use the console command "PlayerAddItem("item_name",quantity)" to get the modified items, so for a Syaxian sword that'd be "PlayerAddItem("syaxian_sword",1)".
You could also use the same console command to give you multiple elena gift books with this command "PlayerAddItem("elena_gift_book",1)" and use those to raise your charisma. As for directly editing the player stats I haven't been able to find the variables, searching for the values comes up empty and modifying the rpy files to increase the starting stats doesn't seem to do anything. So you can effectively cheat to make everything really easy but if you wanted to cheat your attributes to get new skills then I'm pretty sure you're SoL until someone much much more competent with python tries to figure out this game.
 

Vitklim

Active Member
Feb 22, 2018
879
1,227
Bro what about skill points and other points
Using URM once again, look up worldChars, go into the list, find yourself, or another character you want to adjust (only touch the ones that can be members of your party, for caution's sake), then into .props
That gives you a list of every single property of a selected character, including unspent attribute points, and skill points. Perks are located there too, but those have to be added manually, and cross-referenced to figure out the correct names for them.

So you can effectively cheat to make everything really easy but if you wanted to cheat your attributes to get new skills then I'm pretty sure you're SoL until someone much much more competent with python tries to figure out this game.
Lmao, you don't even need python knowledge.
As a rule, if you want to tinker with Ren'Py games variables yourself, you need exactly 3 things. Universal Ren'Py Mod, grviewer.com to unpack .rpa files and read them, and patience.
All it took me to figure this one out.
 

malcolmalbie

Active Member
Oct 8, 2018
675
1,389
It seems that the ipatch doesn't do anything about changing relationships. The MC calls Regina "mother" but then states that his mother and Erika's mother both died. Unless the game gives a chance to actually to change the relationships to make better sense with the ipatch.

It seems I'm not the only one to make that statement. Had to go back a few pages using the search function to see the patch needs to be updated.
... No one reported to me that it needed to be updated, so I assumed it didn't. Give this a try.

old said:
Following the death of both Erika’s mother and my own due to winter fever, our fathers were sent to the front.
Regina, a friend to both families agreed to look after us till our respective fathers came home from the war.
Sadly, Erika’s father perished two years ago in battle, leaving [regina_ref] and myself the closest thing to family she had left.
has been rewritten to
patched said:
After mother fell ill with winter fever, father was sent to the front.
Regina, our aunt agreed to look after us till father comes home from the war.
[regina_ref_cap] and myself are the closest family Erika has for now.
Sadly, I am not a writer, so unless someone can come up with a better replacement, this is the best you'll get.
 

Shazam95

New Member
Dec 8, 2024
3
0
Using URM once again, look up worldChars, go into the list, find yourself, or another character you want to adjust (only touch the ones that can be members of your party, for caution's sake), then into .props
That gives you a list of every single property of a selected character, including unspent attribute points, and skill points. Perks are located there too, but those have to be added manually, and cross-referenced to figure out the correct names for them.



Lmao, you don't even need python knowledge.
As a rule, if you want to tinker with Ren'Py games variables yourself, you need exactly 3 things. Universal Ren'Py Mod, grviewer.com to unpack .rpa files and read them, and patience.
All it took me to figure this one out.
Thanks broo‼‼
 

sarlim1608

New Member
Aug 25, 2020
9
10
Is it me or is the cheat code not working?
What I did here:
- I went to the savegameditor website and uploaded my save.
- I changed the amount of xp in the initial quests from 200 to 200000 or 100000, your choice. Pay attention to the name of the quest, it is easy to identify.
- I found the items that were present in the initial inventory, the gems and changed them from 4 to 400.
- I sell these gems and earn gold.
- The website identifies protection in the save, but it already goes through steps to remove it.

STONKS!
 

CannotDeny

New Member
Aug 26, 2020
14
14
... No one reported to me that it needed to be updated, so I assumed it didn't. Give this a try.


has been rewritten to

Sadly, I am not a writer, so unless someone can come up with a better replacement, this is the best you'll get.
Much appreciated. When future scenes with Erika get put in those will need adjustments for the taboo aspect. Wonder if the devs will use "step sister" so its easier to patch by just renaming that term
 
  • Like
Reactions: malcolmalbie
4.20 star(s) 86 Votes