Others RPGM Partial 【Live2D】ホムンクルスとの性活 ~Life with a Homunculus~

4.00 star(s) 1 Vote

eslotam

Member
Sep 16, 2017
145
120
Do we have any update on the 4th gift bug?


Ah nvm, some one already post link from anime-sharing that have fixed version

You don't have permission to view the spoiler content. Log in or register now.
I downloaded the anime sharing version from that link, and it the game is stuck on "Now Loading..." whenever I boot it up for some reason.

Edit:
I managed to fix it somehow by taking the file from anime sharing, and pasting the whole thing over the file from here.
Then I copied the data folder from the translated file found here into that new folder, and voila.
 
Last edited:

whecate

New Member
Nov 23, 2019
13
5
developer own tl
any idea how to download there?
I don't know since when but right now whenever I try download any game in ryuugames,
it asked me to download (+install) unknown software...
No guide or whatsoever from main site... just password to extract it...

You don't have permission to view the spoiler content. Log in or register now.

The scary part, the file once like 13mb, turned into 2gb once extracted,
my anti-virus doesn't say anything (maybe it's outdated), but I got real bad feeling about it...

truly appreciate any info about it...
 

technomage

Member
Sep 19, 2018
373
250
any idea how to download there?
I don't know since when but right now whenever I try download any game in ryuugames,
it asked me to download (+install) unknown software...
No guide or whatsoever from main site... just password to extract it...

You don't have permission to view the spoiler content. Log in or register now.

The scary part, the file once like 13mb, turned into 2gb once extracted,
my anti-virus doesn't say anything (maybe it's outdated), but I got real bad feeling about it...

truly appreciate any info about it...
kinda off topic for this thread, but Ryuu does a lot of link ads, if you get through all of them, you will eventually get to the actual game. ryuu always (at least in my experience) has the downloads as RY-(game id numbers). So if you downloaded anything else, and it's NOT that, then you got something you shouldn't. FYI this games' filename on there is [Ryuugames] RY-RJ01344306.rar and it was roughly 930mb
 
  • Like
Reactions: whecate

PantherMouse

Member
Aug 2, 2021
275
169
any idea how to download there?
I don't know since when but right now whenever I try download any game in ryuugames,
it asked me to download (+install) unknown software...
No guide or whatsoever from main site... just password to extract it...

You don't have permission to view the spoiler content. Log in or register now.

The scary part, the file once like 13mb, turned into 2gb once extracted,
my anti-virus doesn't say anything (maybe it's outdated), but I got real bad feeling about it...

truly appreciate any info about it...
This isn't the right file. You need adblockers to distinguish the real link. After doing the checks in adshrink it will lead you to a paste bin of the download link.
 
  • Like
Reactions: whecate

whecate

New Member
Nov 23, 2019
13
5
Thank you, turns out I click the wrong 'Link Download' button... Now safely downloaded the real game...

However, I'm pretty much messed up,
since I actually did run whatever that suspicious 2gb from fake button ads (before ask here)...
But I got potato pc and froze when I run it, so I had to restart...
I don't see any new software though... I don't know I'm safe or not...
Truly regretted it...
 

technomage

Member
Sep 19, 2018
373
250
Thank you, turns out I click the wrong 'Link Download' button... Now safely downloaded the real game...

However, I'm pretty much messed up,
since I actually did run whatever that suspicious 2gb from fake button ads (before ask here)...
But I got potato pc and froze when I run it, so I had to restart...
I don't see any new software though... I don't know I'm safe or not...
Truly regretted it...
you should def run something like trend micro's housecall (free) to at least make sure the worst of the bugs are clear.
 
  • Like
Reactions: leastdevotee

loliconousama

Newbie
Jul 26, 2020
15
4
anybody knows why it shows error no related product when i clicked the dlsite link? this happened to some of the other games as well.
 

ControlTheBeast

New Member
Jun 5, 2018
9
32
Hey everyone,
I found a way to get by the 4th present bug without messing too much with the files (I dont know if someone else already figured this out!).


SHORT EXPLANATION:

The bug is caused by the live2d plugin used, not locale or rpgm failing. Since I dont know a lot about the programming unpacking the code didnt give any real clues. However, the head against the wall approach did work: I could load the model into a live2d viewer and it worked fine, so what exactly causes the animation call to bug out is a mystery to me.

HOW TO FIX:

Go to your [game folder]/www/data/CommonEvents.json, open it with the editor of your choice (massive file warning!) and scroll to line 389. You should find these events:

JSON:
            {
                "code": 355,
                "indent": 0,
                "parameters": [
                    "$gameScreen.live2d(100).setModel('staff_role');"
                ]
            },
            {
                "code": 355,
                "indent": 0,
                "parameters": [
                    "$gameScreen.live2d(100).setAnimation(1, 'staff', 'none', true);"
                ]
            }
Delete the action call. With that I mean the second section of curly brackets containing the 'setAnimation' call.

Your json file should look like this now:


JSON:
            {
                "code": 355,
                "indent": 0,
                "parameters": [
                    "$gameScreen.live2d(100).setModel('staff_role');"
                ]
            },
MAKE SURE THERE IS ONLY ONE COMMA, because the json file needs to stay valid as a whole.

Now, when you give her the fourth present and the cutscene plays, there will NOT be an error, but a long black screen, which takes around 1:30 min to resolve (about the length of the credits part that should normally play here). AFAIK there is no way to skip that, so just wait it out.

You don't have permission to view the spoiler content. Log in or register now.

Have fun playing!


note: I dont know whether replacing the animation with another one works. The time you need to wait seems to be hardcoded, and figuring out the exact codepoint and changing it was out of my scope. I just hope this serves as
 
Last edited:
4.00 star(s) 1 Vote