Re: 堕ち姫ルーシア物語 [RJ183431]
If you use the speedhack you can open console with F8 and break/fix/cheat the game completely in any way you want.
http://www.ulmf.org/bbs/showthread.php?t=29375
Notice that changing the values to unexpected things might crash or break the game completely.
Type the following commands to console and press enter to execute. Click the foldable arrows to open them and explore variables.
Type $ and browse the autocomplete to explore available functions and variables yourself.
All RPGMV Games use similar format and finding any value/flag the game uses is usually pretty easy.
Here are some examples of how powerful using the console is:
(Go back 1 day)
$gameSystem._chronus.addDay(-1)
(Add gold)
$gameParty._gold = 50000
(Change time of day (hours, minutes) (24h format))
$gameSystem._chronus.setTime(8,30)
(List all custom variables in the game)
(These allow you to modify any value in the game, progress countered events and whatnot)
$dataSystem.variables
(Modify any value using the index found in $dataSystem.variables)
(e.g. Change 性知識 (Sex knowledge) to any value, it was at index 32 in $dataSystem.variables)
$gameVariables._data[32] = 50
(List all flags in the game)
(Allows you to complete quests, events or set any flags in the game)
$dataSystem.switches
(Returns you to virgin, allows rewatching the scene)
(Menu status texts must be manually changed in $dataSystem.variables and can be changed to anything)
$gameSwitches._data[38] = null
(List all skills in the game)
$dataSkills
(Add masturbate skill to your character without any bugfix patches, was at index 22 in $dataSkills)
(This will unlock events at outdoor stars)
$gameActors._data[$gameParty._targetActorId]._skills.push($dataSkills[22].id);