CloneClown

Member
Jan 31, 2018
125
76
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 , 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.
 

Stringedkuboki

New Member
Nov 20, 2018
13
9
So I Beat the Final boss and I got to the scene where im escaping the Deep Hole but a wall is blocking me and I select the "try to find another way" option but I fail an item check. Does anyone know what's that all about?
 
  • Like
Reactions: Obrecht13

Obrecht13

Member
Jun 12, 2017
107
621
So I Beat the Final boss and I got to the scene where im escaping the Deep Hole but a wall is blocking me and I select the "try to find another way" option but I fail an item check. Does anyone know what's that all about?

You need to attack the guy that gave you the town tour and he'll give you an item for that.
 
  • Like
Reactions: Stringedkuboki
3.30 star(s) 7 Votes