Thousands of Models Streaming Live — Join Free! Click Here!
x

syzxe

New Member
Sep 22, 2020
1
0
31
Where are you supposed to put the InchestPatch + Cheat? like in what folders, I've tried pretty much every single folder but i cant get it to work
 

M'95

Member
May 17, 2019
496
971
281
Where are you supposed to put the InchestPatch + Cheat? like in what folders, I've tried pretty much every single folder but i cant get it to work
For Renpy it's the /game folder 99% of the time.
 

Daedalus43

Newbie
Aug 1, 2017
33
35
89
I don't know how to do all that mega file stuff lol, tbh I'm sure someone will make a better updated one in the coming days but this was just me trying to do a quick fix.

It's just an edit to 3 of the variables in the character.rpy file and it works but for only starting a new game as I've mentioned previously it's my first day doing a patch and with no prior knowledge of coding in Ren'Py and Python it's the best I can do. If you want something more better I'd wait for someone to bring an updated patch from page 1 but that can't be me lol but the original poster of the zz_patch as that is their expertise not mine lol.
Hi, so I keep getting references to the fairy's name as zz_patch.rpyc, both when she's the speaker and when MC is caller her name. I tried hardcoding f1 in characters.rpy and in zz_patch.rpy but it doesn't change.
 
  • Like
Reactions: Troy9000

Dudeguybrah

Member
Aug 20, 2018
138
101
158
Coming into this game for the first time. Its asking me if I've played the prologue, which i haven't. The button takes me to the patreon for the game but says nothing about the prologue, whats the deal with that? Is it The Taboo? Or is there a seperate part of the game that i need to download and play first?
 

M'95

Member
May 17, 2019
496
971
281
Coming into this game for the first time. Its asking me if I've played the prologue, which i haven't. The button takes me to the patreon for the game but says nothing about the prologue, whats the deal with that? Is it The Taboo? Or is there a seperate part of the game that i need to download and play first?
It is in the first post below the download for the game and hidden under the spoiler: prologue v0.3b tag.
 
  • Like
Reactions: Dudeguybrah

Sossig

New Member
May 29, 2018
11
12
168
Is it possible to change the fairy's name for something else than zz_patch.rpyc?
why my elf name is zz_patch.rypc ? and after I choose the name, it still zz_patch.rypc .
Create a file called whatever.rpy in the game's 'game' folder, paste this inside...
Code:
init python:
    config.developer = True
...to enable the use of console commands.

Now start the game, load your save (or start a new game and get past the photo showing thing), press Shift+O, paste this...
Code:
f = Character("[f1]", image="fairy", who_outlines=[(2, "#fff")], who_color="#24a80f")
...press enter, then escape, and the fairy has a proper name once more.

It seems some file handling code is overwriting the variable 'f' which is used for the fairy character. Only affects a new game though, not loaded saves.
 

Drinkolvi

Newbie
Oct 15, 2018
86
19
57
Create a file called whatever.rpy in the game's 'game' folder, paste this inside...
Code:
init python:
    config.developer = True
...to enable the use of console commands.

Now start the game, load your save (or start a new game and get past the photo showing thing), press Shift+O, paste this...
Code:
f = Character("[f1]", image="fairy", who_outlines=[(2, "#fff")], who_color="#24a80f")
...press enter, then escape, and the fairy has a proper name once more.

It seems some file handling code is overwriting the variable 'f' which is used for the fairy character. Only affects a new game though, not loaded saves.
Does it matter do you enable the use of console commands by your way or by changing config.console to true on the file 00console?
 

Sossig

New Member
May 29, 2018
11
12
168
Does it matter do you enable the use of console commands by your way or by changing config.console to true on the file 00console?
There is no difference when it comes to this particular game, you get the same result. Some devs, however, change config.console inside their own config file within the ./game folder which overrides the changes you make to 00console.rpy. My way works in both cases.
 
Dec 27, 2019
74
84
48
Thank you for the answer. One question, is there any easy tutorial on Renpy's language? Opening the file with a txt editor makes it seem it is pretty simple. In case I want to do experiments of my own.
type this into the command console (Shift+o)
f = Character("[f1]", image="fairy", who_outlines=[(2, "#fff")], who_color="#24a80f")
if you dont have command console then look up how to, plenty of forums on how to open it in f95
 
  • Like
Reactions: 1tomadeira
3.80 star(s) 137 Votes