Hi everyone,
This game is cute, the animations are good, the voice acting is good, and so on!
But I just don't have the patience for going through the super uninteresting, extremely repetitive combat stuff... not at my age.
So, I went ahead and spent too much of the day figuring out cheat commands. Click F12 while in game and enjoy:
// A Simple Life with My Unobtrusive Sister — Complete Console Commands Reference
// AFFECTION & AROUSAL SYSTEM
//---------------------------------------------
// Game will lag during implementation // I did experience the game breaking when trying to do this over and over -
// before trying to save. I did fix itself after sitting on Loading... for about 20ish seconds. Restarting game helps a lot.
// Effects seem to not requires changing the day/sleeping as Panty conversation does yield positive results (maybe mult tries)
// Additionally, provides
// Increase Affection by 1000 // Must do before Arousal; Advised to produce 7 hearts first.
$gameVariables.setValue(17, $gameVariables.value(17) + 1000);
// Increase Arousal by 100% //
$gameVariables.setValue(16, $gameVariables.value(16) + 100);
// Set Arousal to exactly 99% // Not sure of the usefulness as it prevents more touching
$gameVariables.setValue(16, 99);
// SALMON ITEM COMMAND
// I didn't bother to figure out if giving the vendor enough salmon/king salmon does anything or not.
//---------------------------------------------
// Obtain Salmon (confirmed item ID: 67)
$gameParty.gainItem($dataItems[67], 1);
// ADD ALL CONSUMABLE ITEMS
// Be aware, this will give you a story item, as well, that triggers/transforms when going through the B portal
//---------------------------------------------
$dataItems.forEach((item) => {
if (item && item.consumable) {
$gameParty.gainItem(item, 99);
console.log("Added:", item.name);
}
});
// Giving sister \"Apple Apple Slime\" for dinner triggers the Video Game Event afterward.
// Set Yen to 999,999 (or any value you like)
$gameParty.gainGold(999999);
// STATS
// Be aware, after making these changes, the whole game seems to lag just a bit; especially the combat stuff.
// First run this to increase max stats
for (let i = 0; i < me._paramPlus.length; i++) {
me._paramPlus = 999;
}
// Second run this to fill it up
// I'm sure part of this is unneeded or does nothing
let me = $gameActors.actor(1);
me._hp = 9999;
me._mp = 9999;
me._baseParamCache[0] = 9999; // Max HP
me._baseParamCache[1] = 9999; // Max MP
stats?
----------
I'm a novice at programming and coding and data manipulation and what not, but this works.
If you have the energy, go ahead and improve them; I'm sharing here because I want people to benefit.