View attachment 114937
I created this to make it easier to make custom cheat menus for RenPy games, its basically a text editor where you can make a menu and open it ingame.
The only requirement is that you know the name of the variables.
Features:
Enables console.
Get list of current used variables + values to file "Game Variables.txt" in game root dir (Default to 'M' if enabled in settings)
Adds editable shortcut to console (Default to 'L') and cheat menu (Default to 'K').
Add variables and submenus with simple button click. (Submenus cant be placed in submenus)
Drag & Drop to modify order of items.
Text editor, for the more advanced users, its basically a bare bone script system.
Generate button with generate a menu which will be copied to the clipboard.
Install will create a file named 'CustomCheatMenu.rpy' at selected location.
Variable types:
variable_name (Will make a menuitem with the selected variable and ask for input ingame)
variable_name;custom_text (Same as above, however will have custom text)
variable_name=500 (Fixed variable, will set value to specified)
variable_name=500;custom_text (Same as before, will show custom text)
<submenu_title (Creates a submenu, everything between start and end will be added to submenu)
> (Ends the submenu)
Warning:
Use the cheats generated with care, as you might break something in your game if you modify the wrong variables.
Using the function to write game variables to a file is experimental, please be cautious while using it.
Feedback is much appreciated.
(Preview game is 'Corruption')
Change-Log:
View attachment 114938
View attachment 114939
View attachment 114940
View attachment 114941
View attachment 114942
View attachment 114943
View attachment 114944
View attachment 114945