What better way to introduce myself to community than to provide some pro secrets? Figured I would do it here since the OG Akabur game is what I am currently experimenting on. I am still learning python myself and how it works in RenPy but if you can get the config console to open [GAME FOLDER/ renpy/ common/ 00console.rpy SET config.console = True] then you just need to know the name of some variables to manipulate. I like using saveeditonline. You drop a save file in and it reads all variables. No need to make changes and save a new file then overwrite and reload your game. Instead, just use it to list the variables for yourself then in-game, use Shift+O to open the console and type something like
and press enter. Then esc to close console.
You can use this to change stats
give items
(fishnets x 10) activate events
(true/false, forces package from owl without waiting, best if used with something like
because buying an item and then forcing its arrival will still cause game to make you wait before you are able to buy again) and activating sprites
Finally to answer some questions I saw previously.
- Use potions to heal yourself when fighting Snape, that you get by checking the cupboard each day before the fight. Also
- to add butter beer use
- force private favors with
Code:
buying_favors_from_hermione_unlocked=1
- likewise force public favors with
- Oh and of course
will make her say yes every time. Though there are some game scripts that require you to do each favor more than once to complete and she may or may not be happy about them but that is what the beer is for. I am currently trying to figure out how to get all the endings but it seems to be more complicated than I originally thought. Enjoy!