srfsmrf_

Active Member
May 24, 2024
801
744
179
It finally got completed… i wish i wasnt stubborn i miss the old models too much to play it, it doest hit the same.
Got this one bookmarked for a while, haven't played it yet. Did this change with v1.0.0 or smthng? Has the whole game been overhauled (like what happened to e.g. Prince of Suburbia & Confined with Goddesses)?

The latter you can still play old style ('legacy' ver). Sweet. I concur, I tend to give preference to the original (not so 'smoothened out', kinda ai-like, starts to all look the sameish) artwork for these games.
 
Nov 11, 2022
121
38
151
Is there a guide for this game, lack of any ingame measure of progression kinda makes me not sure how to move forward. Got the threesomes with M&S and with M&A, but dunno what to do next.
 
Jan 25, 2023
45
32
69
i can't progress without changing Linda's clothes back to the default, but i can't find the option to do so. where is it?

edit: disregard, i figured it out
 

JMan9200

Member
Mar 3, 2025
136
154
62
Got this one bookmarked for a while, haven't played it yet. Did this change with v1.0.0 or smthng? Has the whole game been overhauled (like what happened to e.g. Prince of Suburbia & Confined with Goddesses)?

The latter you can still play old style ('legacy' ver). Sweet. I concur, I tend to give preference to the original (not so 'smoothened out', kinda ai-like, starts to all look the sameish) artwork for these games.
Not sure what the other person is referring to, but early in the development of the game, the original artist left the project and a new artist took over. There may or may not have also been an update in art styles with the second artist, but I'm not sure on that part.
 
  • Like
Reactions: srfsmrf_

mlgtk

Newbie
Dec 1, 2019
91
91
213
Got this one bookmarked for a while, haven't played it yet. Did this change with v1.0.0 or smthng? Has the whole game been overhauled (like what happened to e.g. Prince of Suburbia & Confined with Goddesses)?

The latter you can still play old style ('legacy' ver). Sweet. I concur, I tend to give preference to the original (not so 'smoothened out', kinda ai-like, starts to all look the sameish) artwork for these games.
similar to confined with goddesses but in the middle of being made the original artist stopped responding so the guy who makes one of his other games started remaking the entire game
 
  • Like
Reactions: srfsmrf_
Apr 12, 2024
20
36
85
I've made some fixes for myself which may be of interest to a few people. You can download the archive from the attached files.

If you don't trust me or would prefer not to download it, here are the steps to follow to do it yourself:

I - START THE GAME IN FULLSCREEN MODE

You can press F4 to switch to full-screen mode, but if you are to lazy or don't want to do it every time you launch the game, just modify "package.json" file in root folder (not the one in www folder). Add the following line "kiosk": true, so the file looks like this:

Code:
{
    "name": "",
    "main": "www/index.html",
    "js-flags": "--expose-gc",
    "window": {
        "kiosk": true,
        "title": "",
        "toolbar": false,
        "width": 816,
        "height": 624,
        "icon": "www/icon/icon.png"
    }
}
Save, exit, start the game.

II - MOUSE FIX

Sometimes, the mouse cursor doesn't appear when you start the game, so you have to restart it (or press F5). To fix it, go to the plugins folder (\www\js\plugins). Create a file "MouseFix.js" with your favorite text editor and copy past the following in it:

Code:
TouchInput.enable()

// Show Cursor
document.body.style.cursor = 'default'
Save. Now, to activate this fix, copy the following line in the "plugins.js" file in \www\js. Add it at the end, just before ];
Code:
{"name":"MouseFix","status":true,"description":"","parameters":{}}
Don't forget to add a comma symbol at the end of the line above from yours.

Save, exit, start the game.

III - ADD MORE SAVE SLOTS

By default, the game has 40 save slots, which is probably enough for most of players. But if you want to add more, go back to the plugins folder (\www\js\plugins), and just like the mouse fix above, create a file "MoreSaveSlots.js", and copy paste the following code in it:

Code:
DataManager.maxSavefiles = function() {
    return 100;
};
100 is the number of slots you want. You can change this number to your liking.
Save the file.

Last step, open the "plugins.js" file in \www\js again, and add this line at the end:

Code:
{"name":"MoreSaveSlots","status":true,"description":"","parameters":{}}
Again, don't forget to add a comma symbol at the end of the line above from yours.

Save, exit, start the game.

You should now have a lot more slots available in the save screen.


SOURCES:

- Fullscreen:
- Mouse Fix:
- Save Slots:
 
Last edited:
Mar 10, 2025
161
460
72
I've made some fixes for myself which may be of interest to a few people. You can download the archive from the attached files.

If you don't trust me or would prefer not to download it, here are the steps to follow to do it yourself:

I - START THE GAME IN FULLSCREEN MODE

You can press F4 to switch to full-screen mode, but if you are to lazy or don't want to do it every time you launch the game, just modify "package.json" file in root folder (not the one in www folder). Add the following line "kiosk": true, so the file looks like this:

Code:
{
    "name": "",
    "main": "www/index.html",
    "js-flags": "--expose-gc",
    "window": {
        "kiosk": true,
        "title": "",
        "toolbar": false,
        "width": 816,
        "height": 624,
        "icon": "www/icon/icon.png"
    }
}
Save, exit, start the game.

II - MOUSE FIX

Sometimes, the mouse cursor doesn't appear when you start the game, so you have to restart it. To fix it, go to the plugins folder (\www\js\plugins). Create a file "MouseFix.js" with your favorite text editor and copy past the following in it:

Code:
TouchInput.enable()

// Show Cursor
document.body.style.cursor = 'default'
Save. Now, to activate this fix, copy the following line in the "plugins.js" file in \www\js. Add it at the end, just before ];
Code:
{"name":"MouseFix","status":true,"description":"","parameters":{}}
Don't forget to add a comma symbol at the end of the line above from yours.

Save, exit, start the game.

III - ADD MORE SAVE SLOTS

By default, the game has 40 save slots, which is probably enough for most of players. But if you want to add more, go back to the plugins folder (\www\js\plugins), and just like the mouse fix above, create a file "MoreSaveSlots.js", and copy paste the following code in it:

Code:
DataManager.maxSavefiles = function() {
    return 100;
};
100 is the number of slots you want. You can change this number to your liking.
Save the file.

Last step, open the "plugins.js" file in \www\js again, and add this line at the end:

Code:
{"name":"MoreSaveSlots","status":true,"description":"","parameters":{}}
Again, don't forget to add a comma symbol at the end of the line above from yours.

Save, exit, start the game.

You should now have a lot more slots available in the save screen.


SOURCES:

- Fullscreen:
- Mouse Fix:
- Save Slots:
For mouse fix, you can just press F5.
 

srfsmrf_

Active Member
May 24, 2024
801
744
179
This 'hack' is also interesting:

Does work, not sure if 'font-smooth' has any effect though. While I dislike the blurriness of the default bilinear scaling (game is only 720p right), the overall result of switching to 'pixelated' (nearest neighbor) isn't quite satisfactory.

Not that familiar with RPGM (hacking). Do believe MV uses PixiJS that can use either Canvas or WebGL so perhaps some GL shader could be put in the pipeline that could potentially render a nice result?

And/or a way of having the image processed separately from the text. (Perhaps the pixelated image-rendering can be applied to a different element, or revert it for the text inside _centerElement?)
 
Last edited:
Apr 12, 2024
20
36
85
For mouse fix, you can just press F5.
Thanks! I didn't know that trick. Mine is for lazy people who don't want to press F5 every time.

This 'hack' is also interesting:
Thanks! I've also tried this hack but didn't get good results, even when modifying the values. I think the best way to improve the graphics is to extract and scale all the images using AI.
 

DatingSimFan

New Member
Jun 5, 2021
8
4
13
Easy to port it yourself.
Download the PC version, unzip and look for a folder called www. Rename that folder to app.nw
Download nwjs-v0.29.0-osx-x64 from
Check if you can run the nwjs app because you might need to remove quarantine and restore the execute permission.
Copy the app.nw folder from the PC download and paste it inside the nwjs app (right click app, show package contents), in /Contents/Resources
Optional: rename the nwjs app to something else, let's say House Chores, or whatever strikes your fancy.
thank you, you are a legend
 
Last edited:
  • Like
Reactions: PBS666
4.00 star(s) 140 Votes