yea with siren games i feel like it's implied that its all incest but this is the gmae that mad eme go wait... is it me or is it siren?Yeah, just like the other Siren games you can change what the relationship is to the initial core three female characters at start. You can make them related, step, etc.
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)?It finally got completed… i wish i wasnt stubborn i miss the old models too much to play it, it doest hit the same.
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.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 gameGot 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.
Windows Mega link worked fine for me. Not sure about the others.is the link dead or what? can't download it ://
{
"name": "",
"main": "www/index.html",
"js-flags": "--expose-gc",
"window": {
"kiosk": true,
"title": "",
"toolbar": false,
"width": 816,
"height": 624,
"icon": "www/icon/icon.png"
}
}
TouchInput.enable()
// Show Cursor
document.body.style.cursor = 'default'
{"name":"MouseFix","status":true,"description":"","parameters":{}}
DataManager.maxSavefiles = function() {
return 100;
};
{"name":"MoreSaveSlots","status":true,"description":"","parameters":{}}
For mouse fix, you can just press F5.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:
Save, exit, start the game.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" } }
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:
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:TouchInput.enable() // Show Cursor document.body.style.cursor = 'default'
Don't forget to add a comma symbol at the end of the line above from yours.Code:{"name":"MouseFix","status":true,"description":"","parameters":{}}
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:
100 is the number of slots you want. You can change this number to your liking.Code:DataManager.maxSavefiles = function() { return 100; };
Save the file.
Last step, open the "plugins.js" file in \www\js again, and add this line at the end:
Again, don't forget to add a comma symbol at the end of the line above from yours.Code:{"name":"MoreSaveSlots","status":true,"description":"","parameters":{}}
Save, exit, start the game.
You should now have a lot more slots available in the save screen.
SOURCES:
- Fullscreen:You must be registered to see the links
- Mouse Fix:You must be registered to see the links
- Save Slots:You must be registered to see the links
v1.1.0 Full Savesave
Thanks! I didn't know that trick. Mine is for lazy people who don't want to press F5 every time.For mouse fix, you can just press F5.
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.This 'hack' is also interesting:You must be registered to see the links