- Jul 17, 2018
- 370
- 163
First, you need to enable the console:How do you use cheats
Go to "Renpy game xxx"/ Renpy / Common / and using notepad, open the file 00console.rpy
find config.console
Set config.console variable to True
Example..... config.console = True
Save file
Open and load game, and press shift O (letter)
Type cheats in console. Use cheats at your own risk. These may or may not break your game. Save before using.
PLAYER—
- Gold: gold=Y
- Mana: mana=Y
- Crystals: crystals=Y
- Attention: attention=Y
- Day: day=Y
- Strength: roster[X].str=Y
- Dexterity: roster[X].dex=Y
- Constitution: roster[X].con=Y
- Intelligence: roster[X].int=Y
- Sexuality: roster[X].sexuality=Y
- Level: level=Y {tip: 0=1}
- Experience: roster[X].experience=Y
- Affection: roster[X].affection=Y
- Lust: roster[X].lust=Y
- Rest Days Needed: roster[X].restdays=Y
- Alignment: good, bad or somewhere in-between?
- Add Trait: roster[X].traits.append("Trait")
- Remove Trait:roster[X].traits.remove("Trait")
- Add Fetish:roster[X].fetishes.append("Fetish")
- Remove Fetish:roster[X].fetishes.remove("Fetish")
for x in range (0,len(roster)): roster[x].maxhp=99;roster[x].hp=99;roster[x].maxsp=99;roster[x].sp=99