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:
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