RPGM A Simple Life with My Unobtrusive Sister [v0.85] [Countercurrent Tea Party]

3.30 star(s) 22 Votes

Uzur123

Member
Jan 23, 2020
442
321
197
how does the cure work?
If you are talking about the potion from the Philosopher's Stone fragment, then it improves sister's health and you can wake her up in the morning with some chance, when the potion expires, sister will not be able to be woken up in this way.
That is, you will need to periodically obtain a potion and most likely improve it, but at the current time these mechanics have not yet been implemented in the game.
 

winceptor

Member
Jan 8, 2023
499
528
160
Any this game port into Android By official?
I already give up emulator Android unavailable run this game
With minor changes to ui/controls this should be playable using Joiplay. Patience my friend! (answer is no, only vague plans for later)
 

cIoseopenbrutal

Well-Known Member
Apr 2, 2021
1,006
1,508
287
Just stumbled this game on Ryuugames today. Seems like it has a big potential to be good. Not gonna play it yet, but will definitely Watch this thread now.
 

AfricanBob

Newbie
Feb 3, 2018
35
8
83
Is this worth to play right now? or should I wait for full release?
Same question, I played for about an hour and a half last night and all I got were teases. It seems a little unentertaining despite perhaps some of the nicest shower animations I've seen in fucking ages. Not to mention the dungeon crawling is a little uninteresting.

edit : came back to the game and it's running at like 5fps. Worked just fine last night lmao. Idk what the fuck this game is doing.

the constant instant kill enemies and 5fps really make this game a piece of shit
 
Last edited:

XhereTOhelpX

New Member
Apr 11, 2025
1
22
3
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.
 

dreed

New Member
May 31, 2017
9
0
124
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.
can you reset the save
 

Samknowsall

Member
Jan 12, 2021
316
343
187
A question arose. What exactly, or how to kill the Scarecrow. On the site with the description of the mechanics it is written that the hint is in the Description of the Scarecrow (a dummy for checking damage), but I could not kill it.
Use poison or bleeding sword
 

Somoren

Member
Aug 23, 2021
151
82
143
I got up to 50k poison damage, the day finished and the scarecrow was still alive, just how much dmg do you need?
 

Uzur123

Member
Jan 23, 2020
442
321
197
You need more then one sword. The one that causes the enemy to bleed/poison stacks up so just keep hitting the scare crow dies.
finally defeated the scarecrow. "Equipment", namely with the help of purple poison knives, 3-4 pieces seem to be enough. We stand under the scarecrow so that the knives touch the scarecrow and poison it. Then you need to eat a piece of the philosopher's stone so that the hero says a line, but do not cancel the line to stop time... We wait 30 minutes, achieve 240k damage, the hero says a line, the scarecrow finally dies.
To stop time, you can break a weapon and not activate a new one, but in this case you will have to wait for the required damage for several hours.
The more damage the weapon has, the more damage from the poison will be added per "1 stack"

By the way, if you quickly run outside the map and return, you can have time to kill several scarecrows.
 
3.30 star(s) 22 Votes