So, because i am
LINUX gamer i shall share my knowledge, to get this game to work on LINUX you gotta have jap locale(not as main but just have it) then extract the game 7z to folder of your choice with this(you need to get jap locale and 7z installed, since its specific to distro i wont mention how to do it):
Code:
export LC_ALL=ja_JP.UTF-8
7z x Dungeon_And_Darkness-Steam.7z -o"path/to/your/folder"
Now you gotta get linux version of
You must be registered to see the links
, extract the archive, then move www and package.json from the game folder to NW.js extracted folder.
Next step is going into package.json with any text editor (nano for example) and editing name to anything you want(it just has to have name or else it wont work)
Code:
{
"name": "dungeon_and_darkness",<--------------
"main": "www/index.html",
"js-flags": "--expose-gc",
"window": {
"title": "",
"toolbar": false,
"width": 816,
"height": 624,
"icon": "www/icon/icon.png"
}
}
Now to have it work you just boot up NW file from console that has locale set to jap, or use simple script like this:
Bash:
#!/bin/bash
export LC_ALL=ja_JP.UTF-8
./nw
Save it as .sh file and set it as executable in properties or "chmod +x start.sh" in console
Whenever you want to launch the game, just use the .sh file you made.