- Nov 14, 2017
- 352
- 323
Hi I'm trying to locate the following in linux "C:\Users\your name\AppData\Roaming\RenPy" to delete the 'game' folder... I'm told if i delete this folder it might help me load a save fil i'm having trouble with..
On Linux it is your users home directory - a hidden folder named .renpy.Hi I'm trying to locate the following in linux "C:\Users\your name\AppData\Roaming\RenPy" to delete the 'game' folder... I'm told if i delete this folder it might help me load a save fil i'm having trouble with..
./*.sh & disown
That did it. I no longer get errors. I didn't know of such a function, thanks.I know I've used `nohup foo.sh &`, and then you can `exit` the terminal at any time
$.getProcessPath = function(){
var path = process.execPath;
var tmp_index = 0;
var os = "linux";
if(path.indexOf(".app") !== -1){
os = "mac";
tmp_index = path.indexOf(".app");
}else if(path.indexOf(".exe") !== -1){
os = "win";
tmp_index = path.indexOf(".exe");
}
if(os == "linux"){
return process.cwd();
}
var tmp_path = path.substr(0,tmp_index);
var path_index=0;
if(os == "mac"){
path_index = tmp_path.lastIndexOf("/");
}else{
path_index = tmp_path.lastIndexOf("\\");
}
var out_path = path.substr(0,path_index);
return out_path;
};
MESA_GLSL_CACHE_DISABLE=true nw .
You forgot to mention that you try to play a compressed game. Linux is case sensitive, means files and code need to match. The game was made in Windows were lower/upper case not matter.can someone explain what i am doing wrong here ?
i create a copy of the nwjs-v0.38.2-linux-x64( and also tried with nwjs-v0.43.6-linux-x64) into a game folder ,and from a game folder i move the package.json file and the www folder into the nwjs-v0.38.2-linux-x64 folder .opened that in the terminal and typed ./nw .
this was explained to me before and it has worked , but my problem is , when i try with a different game i get either a blank screen or a failed to load screen , i'll include a screen shot ,
is there a easy solution for this ?, as i am really pretty clueless trying to figure out what i'm doing wrong this time .
i'm sorry i wasn't aware that a compressed game wouldn't work this way , after i unzipped it i just presumed it was uncompressed again , so i didn't think it was important to mention , so i will try again ,this time i will download an uncompressed version and try that , as im not really sure i understand about changing files and lower and upper case letters , i wouldn't know where to begin , thanks for the adviceYou forgot to mention that you try to play a compressed game. Linux is case sensitive, means files and code need to match. The game was made in Windows were lower/upper case not matter.
Check the file mentioned in the error message and make sure the file name is the same as shown.
Your problem is with Lida's Adventures, right?this was explained to me before and it has worked , but my problem is , when i try with a different game i get either a blank screen or a failed to load screen , i'll include a screen shot ,
is there a easy solution for this ?, as i am really pretty clueless trying to figure out what i'm doing wrong this time .
Wine isn't needed. All RPG Maker MV games run natively on Linux by downloading either nw.js or the RPG Maker MV Linux Launcher.Your problem is with Lida's Adventures, right?
Simply downloading the game (I downloaded the compressed version (v0.8.8)) and deleting the file libGLESv2.dll in the game's folder and then starting the game (LA EP2 GAME.exe) using WINE works for me.
Mate, don't get me wrong, but why do you make it so complicated?yes that's right Lida's Adventures, so ok i downloaded an uncompressed version Episode 1, followed the steps , created nwjs-v0.43.6-linux-x64 folder in the game folder , from the game folder i move the package.json file and the www folder and also the nw.pak ( and made it executable) into the nwjs-v0.43.6-linux-x64 , opened this in a terminal , typed ./nw . and the game opens , and was seeming to run fine until i right click on options and then i get another error screen ,i have also tried deleting the libGLES files and tried ipen with a wine application , but noting happens at all with that method
Sorry mate for acting all arrogant in my previous posts. I downloaded Episode 1 of Lida's Adventure's and took a look myself. I thought it was a classic RPG Maker MV game - well, it is, but it was made with an outdated version of RPG Maker MV which didn't support Linux/Mac back then.yes that's right Lida's Adventres, so ok i downloaded an uncompressed version Episode 1, followed the steps , created nwjs-v0.43.6-linux-x64 folder in the game folder , from the game folder i move the package.json file and the www folder and also the nw.pak ( and made it executable) into the nwjs-v0.43.6-linux-x64 , opened this in a terminal , typed ./nw . and the game opens , and was seeming to run fine until i right click on options and then i get another error screen ,i have also tried deleting the libGLES files and tried ipen with a wine application , but noting happens at all with that method
Mate, don't get me wrong, but why do you make it so complicated?
Easy steps for RPG Maker MV Games:
1. Download RPG Maker MV Linux Launcher v1.62.
https://f95zone.to/threads/rpg-maker-mv-v1-62-linux-mac-and-windows.31352/
2. Copy the game's "www" folder into the launcher's folder.
3. Mark game and nw.js files executable.
4. Enjoy the game.
Other games which use TyranoBuilder as game engine, there you can use the nwjs-method to play them natively on Linux.
P.S. To solve your above permission issue you can use chmod. Open Terminal and type:
chmod -R a+x [drag and drop game folder and hit enter]
merge is correct.2 i then move the www folder from the game to the RPG Maker folder , and i’m asked to merg these , , so i do ! Maybe this is wrong ??
nw.js is the "nw" file.3 next i open proprieties of of the game desktop folder and the 2 nw present pack folders to make them excautiable also , ( i dont know where nw.js files are , so i presume that they are the nw 100 and 200 present packs ?) is this right ?
it worked , thank you , i hadn't done your step 5 , so after i tried that ,added the new data pack thing it has worked for me , thank you again for your time an patience as i know it must be hard to try and explain each step to me as i really am a lost cause when in comes to this technical stuff , very much appreciatedSorry mate for acting all arrogant in my previous posts. I downloaded Episode 1 of Lida's Adventure's and took a look myself. I thought it was a classic RPG Maker MV game - well, it is, but it was made with an outdated version of RPG Maker MV which didn't support Linux/Mac back then.
However, the good news is that I was able to fix the "mkdir '/save/' error message.
Solution:
Patch the old game's RPG Maker MV engine files with the newer version!
Instructions:
1. Download RPG Maker MV Linux Launcher v1.6.2
2. Download RPG Maker MV v1.6.2_NewData
(https://f95zone.to/threads/rpg-maker-mv-engine-all-versions.32358/post-2065717)
View attachment 684636
3. Copy Lida's Adventure's www folder into the the Linux launcher's folder
4. Copy nw.pak file from Lida's Adventure's game folder to the Linux launcher's folder
View attachment 684638
5. Replace the old RPG Maker MV files in www folder with the downloaded files from Step 2.
View attachment 684642
(Note: fonts.zip need to be extracted first.)
6. Mark "game" and "nw" file as executable.
7. Start the game by clicking on "game" file
8. Enjoy the game
I wouldn't have figure it out if I hadn't tried the game myself. Now we both know that it wasn't your fault but the devs.it worked , thank you , i hadn't done your step 5 , so after i tried that ,added the new data pack thing it has worked for me , thank you again for your time an patience as i know it must be hard to try and explain each step to me as i really am a lost cause when in comes to this technical stuff , very much appreciated
Unless I'm mistaken, the game engine of Urban Voyeur is Monogatari v2, which is built on top of Electron (like RPG Maker MV - NW.js).1. DL the last game version in another OS version (Win ...)
2. Download the "runtime environment (RE)" fitting for your operating system:You must be registered to see the links(Lx, mac, ...) (Don't choose a higher version as 8.x; its incompatible)
3. Unpack both archives and copy the file ".../resources/app.asar" from the game dir in the identical named dir in the Electron directory.
4. Start the game through the file named "electron" in the RE folder.
Enjoy.