Swag&Bacon
Member
- Jun 2, 2020
- 113
- 162
- 43
For Renpy it's the /game folder 99% of the time.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
Well you do get to bang another milfCan we bang the milf as of yet??
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.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.
It is in the first post below the download for the game and hidden under the spoiler: prologue v0.3b tag.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?
Is it possible to change the fairy's name for something else than zz_patch.rpyc?
Create a file called whatever.rpy in the game's 'game' folder, paste this inside...why my elf name is zz_patch.rypc ? and after I choose the name, it still zz_patch.rypc .
init python:
config.developer = True
f = Character("[f1]", image="fairy", who_outlines=[(2, "#fff")], who_color="#24a80f")
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?Create a file called whatever.rpy in the game's 'game' folder, paste this inside...
...to enable the use of console commands.Code:init python: config.developer = True
Now start the game, load your save (or start a new game and get past the photo showing thing), press Shift+O, paste this...
...press enter, then escape, and the fairy has a proper name once more.Code:f = Character("[f1]", image="fairy", who_outlines=[(2, "#fff")], who_color="#24a80f")
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.
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.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?
type this into the command console (Shift+o)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.