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

3.30 star(s) 24 Votes

AlphaJnx

Active Member
Aug 21, 2018
519
139
153
Just tried this for the first time recently and it was a lot of fun! Definitely gonna buy it when it comes out at this rate. Not sure if the devs ever actually look through the forums here but there were a few thoughts I had while playing.

1. Mapping hotkeys for items would be great. I'd ideally like to map some milk for healing to key 1, monster bait to key 2, bombs to key 3, etc. I'm aware that currently you can swap through items using... f and g I think... but honestly when you have a large amount of items, actually using them in combat is too difficult for me so I don't use them at all. Having the game pause when opening the item menu would also be quite nice.

2. Button that pauses the game for inspecting enemies. Currently you can hover the mouse over enemies to inspect them. It's a nice feature in theory, except that the enemies will inevitably move while inspecting them, which removes the info panel that pops up. This makes inspecting enemies way more painful than it needs to be. Maybe "p" to pause without an actual pause menu so I can hover enemies, etc?

3. Allow bulk purchases from the vending machine would be convenient. I suck at the combat, so I stock up on lots of milk for healing. Currently, I have to buy them one at a time and it takes forever to stock up a decent amount. Just let us choose how many to buy and ideally deposit them directly into the inventory so I'm not running around to pick up all the milk.

4. Destroy items anywhere. I know the trash can has a purpose besides just trashing items, but sometimes I really want to get rid of stuff while exploring without accidentally picking it back up 5 seconds later. Discard really isn't enough on it's own.

5. Allow cancelling the spinning throw animation without throwing a weapon. E.g. holding right mouse spins, clicking left mouse while holding right mouse cancels the spin. Just seems like it would make the combat a bit smoother.

6. Allow us to cook meals that we can bring while exploring the dungeon. I've probably got more mushrooms than I could ever possibly cook right now at one meal per day, and I'm sick of chugging milk for healing and buffs lol. On a more serious note, it seems a shame that there are all these ingredients in the game as well as a cooking mechanic but we can't cook meals to consume in the dungeon for healing or buffs.

All that aside, I've loved the game so far despite not getting very far and fainting a whole lot! Love the dungeon experience, the visuals, etc.

Last comment, if the reason she's a step-sis is just for patreon, don't bother, it's still against the rules. If the reason she's a step-sis is because it makes no sense for an elf to be blood related to a human, then ignore me haha.

Edit: I don't think steam or subscribestar care either way. For patreon, I think it's probably just a matter of if they ever actually play the game to see if it meets their guidelines. A few lines in and it's already going to get banned though.

You don't have permission to view the spoiler content. Log in or register now.
Nah Patreon actually have this guidelines that's not allowed for Animated works? the heck? isn't the animated works mostly consist of fiction?
 

990fx

New Member
Dec 3, 2024
1
0
35
Could someone help me or give me information about a scene?
Every time I trigger the bathroom peek scene, when I open the door, she either gets angry and forcibly removes me from the bathroom, or when I try to check her health, she triggers this scene.
View attachment 5515218 However, in the game files, there's a scene where she shows everything without getting angry.
View attachment 5515239 Is there a procedure to get to that scene? Because when I trigger this scene and she's facing away, she triggers the scene of opening her pussy, but it doesn't happen when facing me. Was this implemented?
i saw this scene only once in older version
 

DKing369

Member
Jan 8, 2023
110
80
104
Can give me some tips for playing this game?
check out how to fishing and using gachapon, u might get good weapon early (or at least usable). always check the light top right of map, sometimes you can get good weapon and its respawn everyday cmiiw. try test any weapons you found. weapons with control effect (like stun, freeze) makes things easier against some tough enemy. save some weapon if you want to explore to new place. u might want to check people's build here. seems there is no such tank build so better all out attack. other than that well just git gud
 
Nov 21, 2024
25
18
13
Since the last save I shared couldnt be used (dont know why), I've made a new save file. I tried it and it works normally in my game. Hope this time it works for you
 

GrogGuy

Member
Apr 3, 2022
171
260
140
Nah Patreon actually have this guidelines that's not allowed for Animated works? the heck? isn't the animated works mostly consist of fiction?
They sure do. I think it supposedly has to do with rules from major payment processors.

If I'm remembering right, even steam had taken some games down for similar reasons.
Just skimmed these after a quick search online, but looks like these have some relevant info:


 

jimothylucas

New Member
Sep 14, 2024
1
8
10
Here's some code to help eliminate a lot of the grind from the game.

To use any of the following code, press F12, navigate to the "console" tab, and then paste the code in.

This post is very much inspired by XhereTOhelpX 's post from a while back. You can check out his post for a lot of the basic changes you can do with the F12 console. (i.e. adding red & purple hearts to sister etc.)

------------------------------------------------------------------------------------------------------------------------------------------

GETTING MORE GOLD:
$gameParty.gainGold( ENTER-HOW-MUCH-YOU-WANT-HERE );

GETTING ITEMS:
$gameParty.gainItem($dataItems[PUT-ITEMS-INDEX-HERE], QUANTITY-OF-ITEM );
To see what the index is for an item you're trying to get, in the games files go to /www/data/EN/ItemsDescriptionEN , and the items index will be listed. You can use ctrl+f to sort through and find the name of the item as well.

GETTING WEAPONS:
$gameParty.gainItem($dataWeapons[PUT-WEAPONS-INDEX-HERE], QUANTITY-OF-WEAPONS );
To see what the index is for the weapon you're trying to get, in the games files go to /www/data/EN/WeaponsDescriptionEN , and the weapons index will be listed. You can use ctrl+f to sort through and find the name of the weapon as well.

GETTING ARMOR/EQUIPMENT:
$gamePary.gainItem($dataArmor[PUT-ARMORS-INDEX-HERE], QUANTITY-OF-ARMOR );
To see what the index is for the armor you're trying to get, in the games files go to /www/data/EN/ArmorsDescriptionEN , and the armors index will be listed. You can use ctrl+f to sort through and find the name of the armor.

------------------------------------------------------------------------------------------------------------------------------------------

I would try and find whatever method changes the weapon/armor inventory size, but I spent like a fucking hour looking and couldn't find shit so I'm just calling it good with what I have so far. (I'm assuming it has to do with $gameVariables.setValue, but I can't find the file that says what the damn varNum for each one is/does)


Below is the code from the game, you can find it in /www/js/rpg_objects file

// Change Gold
command125() {
const value = this.operateValue(this._params[0], this._params[1], this._params[2]);
$gameParty.gainGold(value);
return true;
};

// Change Items
command126() {
const value = this.operateValue(this._params[1], this._params[2], this._params[3]);
$gameParty.gainItem($dataItems[this._params[0]], value);
return true;
};

// Change Weapons
command127() {
const value = this.operateValue(this._params[1], this._params[2], this._params[3]);
$gameParty.gainItem($dataWeapons[this._params[0]], value, this._params[4]);
return true;
};

// Change Armors
command128() {
const value = this.operateValue(this._params[1], this._params[2], this._params[3]);
$gameParty.gainItem($dataArmors[this._params[0]], value, this._params[4]);
return true;
};
 

Uzur123

Active Member
Jan 23, 2020
506
356
197
I noticed that Boss Respawns when it's rainy days. instead of 7 days. correct me if im wrong
That's probably true; a lot of things update during rainy weather.

And it wasn't written anywhere that the boss would respawn exactly every 7 days, but rather "about every week".
 
3.30 star(s) 24 Votes