Logo Platform
logo amplifiers simplified

Audio file not found, + Public folder modified

Reply
Copied to clipboard!
9 years ago
Apr 19, 2015, 10:12:26 AM
I have the common issue about public folder modified/achievements disabled, etc...

I also found that all sound bars in config window are forced to 0 (no sound in game) and cannot be moved.



Log file says something about missing file in Public/Audio

Contents of that folder:

[CODE]ls -l drive_c/Program\ Files/Steam/SteamApps/common/Dungeon\ of\ the\ Endless/Public/Audio/

razem 102532

-rw-r--r-- 1 hubertnnn hubertnnn 237856 04-18 13:08 EndlessDungeon.fev

-rw-r--r-- 1 hubertnnn hubertnnn 51682976 04-18 13:09 EndlessDungeon_Music.fsb

-rw-r--r-- 1 hubertnnn hubertnnn 53055648 04-18 13:09 EndlessDungeon_Sfx.fsb

-rw-r--r-- 1 hubertnnn hubertnnn 2718 04-18 13:09 LayeredEvent[Music].xml

[/CODE]

Tried to verify integrity in steam, and it says everything is fine, 2 reinstallations didnt help either.



Game version: DUNGEON OF THE ENDLESS V1.0.59 S19 (32-bit)

OS: Linux

Wine: wine-1.7.33

Simulated: Windows XP
0Send private message
9 years ago
Apr 20, 2015, 9:32:53 AM
Hello hubertnnn and welcome to the forum!



Note that we do not support Linux for now. However, few players have suggested to install the game on a NTFS disk, it should fix it. Now about the sound issue, it seems to be a file path issue. installing the game in another place might fix this issue.
0Send private message
9 years ago
Apr 20, 2015, 2:08:35 PM
Thanks for help. It took some time but placing the game in ntfs file solved the "Public folder modified" issue.

Here is the solution for other linux users having this issue:

[CODE]

#!/bin/bash



DIR="Dungeon of the Endless"

IMGFILE="DotE.img"



if [-e$IMGFILE]

then

mount "$IMGFILE" "$DIR"

echo "NTFS file mounted"

else

rm -r -d "$DIR"

mkdir "$DIR"

touch "$IMGFILE"

dd if=/dev/zero of="$IMGFILE" count=4096000

mkfs.ntfs -F "$IMGFILE"

echo "==================================="

echo "Finished creation of NTFS file."

echo "Run command again to mount it."

echo "(Required after every reboot)"

fi

[/CODE]



Just place this script in "SteamApps/common" directory and run twice (first time it will create the partition and second time mount it, remember to remount after every reboot).

Script must be run by root (or any user with access to mount and mkfs.ntfs commands)



WARNING: It will remove your game directory, so you will need to redownload the game.







edit:

About the path, what exacly could be causing the issue? I dont have any non english characters in my path, here is where I have it:

"/home/hubertnnn/.PlayOnLinux/wineprefix/Steam/drive_c/Program Files/Steam/SteamApps/common/Dungeon of the Endless/Public"

From game it should be seen as

"C:/Program Files/Steam/SteamApps/common/Dungeon of the Endless/Public"
0Send private message
?

Click here to login

Reply
Comment