Tool RPGM RPG Maker MV Linux Converter

Recutinerant

New Member
Jul 23, 2022
7
0
Inspired by the NW.js installation script available here I've written a little tool that can convert most RPG Maker MV games into a linux compatible version.
Main Reason was that I wanted a simple command line tool that did the decryption, NW setup and .json editing for me in one go since I was doing that often enough for it to get annoying.

Here is the git link:
I've also attached the source code as a zip just for redundancies sake.

To compile it, navigate to the folder with the console of your choice and simply execute make.
It's written in C++ and only uses std lib functions, so it should compile on any halfway modern distro.

It can decrypt .rpgmvm, .rpgmvp and rpgmvo files and will update the encrpytion flags in System.json accordingly. If the game is not using a www/ folder and has the game files in root, it will create a www/ folder, move the game files in there and update the package.json with the new path. (I just think this looks cleaner.).

You don't have permission to view the spoiler content. Log in or register now.

The README also includes some troubleshooting tips for games that couldn't be 100% cleanly converted that I've collected.

You don't have permission to view the spoiler content. Log in or register now.


Thanks to pk2000, cold_arctus and capacitor for laying the groundwork for me here and here
Additional thanks to petschko and his , which is where I cribbed the decryption procedure from.


You don't have permission to view the spoiler content. Log in or register now.
 
Last edited:

Recutinerant

New Member
Jul 23, 2022
7
0
Does this work? I want to play https://f95zone.to/threads/tratritle-v1-3-5-inazuma-soft.124085/. I'm a new linux user.
It's not compiling the "make" file. Also you said folder of my choice but there's only one folder.
Thank you.
Can you give me the error message when you try to compile with make?
Are you sure you are in the right folder? When you enter the ls command you can list the current folder contents. With pwd you can print the path to your current directory.
pwd should print something like "/<some path here>/rpgmaker-linux-converter" or "/<some path here>/rpgmaker-linux-converter_v1.1" if you used the attached zip.
When you enter the ls command you should see a main.cpp, main.h and makefile listed.
 
Sep 12, 2023
14
15
I couldnt compile it either.
Here's the terminal output:
Code:
$ make
g++ -Wall -Wextra -g -I. -O0 -c -o main.o main.cpp
main.cpp: In lambda function:
main.cpp:416:31: error: aggregate ‘std::array<char, 128> buffer’ has incomplete type and cannot be defined
  416 |         std::array<char, 128> buffer;
      |                               ^~~~~~
make: *** [makefile:17: main.o] Error 1
 

TGIL

Member
Mar 12, 2019
314
94
Can you give me the error message when you try to compile with make?
Are you sure you are in the right folder? When you enter the ls command you can list the current folder contents. With pwd you can print the path to your current directory.
pwd should print something like "/<some path here>/rpgmaker-linux-converter" or "/<some path here>/rpgmaker-linux-converter_v1.1" if you used the attached zip.
When you enter the ls command you should see a main.cpp, main.h and makefile listed.
The files in the folder: main.cpp main.h makefile README.md
I just double click Makefile and nothing happens.
 

Recutinerant

New Member
Jul 23, 2022
7
0
I couldnt compile it either.
Here's the terminal output:
Code:
$ make
g++ -Wall -Wextra -g -I. -O0 -c -o main.o main.cpp
main.cpp: In lambda function:
main.cpp:416:31: error: aggregate ‘std::array<char, 128> buffer’ has incomplete type and cannot be defined
  416 |         std::array<char, 128> buffer;
      |                               ^~~~~~
make: *** [makefile:17: main.o] Error 1
I've updated the git and attached .zip. The std::array dependency is removed, so it should compile for you now.
 

Recutinerant

New Member
Jul 23, 2022
7
0
The files in the folder: main.cpp main.h makefile README.md
I just double click Makefile and nothing happens.
You need to run make in a terminal. I guess I need to be more explicit.

You first need to open some kind of terminal. On KDE that is usually "Konsole". Open your start- or application menu and search for "Konsole" or "Console" or "Terminal".
Once you opened whatever terminal application is installed in your distro, you'll usually be in your home directory. You need to change directory to the "rpgmaker-linux-converter".
For this Guide, I'll assume you downloaded the .zip to the "Downloads" directory in your home directory.
If you type in:
Code:
cd Downloads
in your terminal and hit enter, you will move to the "Downloads" directory.
(if you enter cd ~/ you can get back to your home directory in case you get lost)

Assuming you unzipped the "rpgmv-linux-converter_v1.2.zip" into the "rpgmv-linux-converter_v1.2" directory, you now need to move there with:
Code:
cd rpgmv-linux-converter_v1.2
(Tip: you can autocomplete with the tab key if you type the first few letters, for example "rpgm" and then hit tab. Double tap the tab key and it will show you all directories that start with "rpgm" in case there are multiple directories.)

Now that you are in the right directory you can compile by entering the
Code:
make
command in the terminal.
If you now list the folder contents by entering
Code:
ls
you should see a "rpgmv-linux-converter" file listed along the main.h, main.cpp etc. (assuming the build didn't fail). This is the actual program that will do the conversion.

To use it you need to enter
Code:
./rpgmv-linux-converter <path/to/your/game/root>
"./<name of binary>" will run a binary on linux, if execution is allowed for that file. If it isn't you can allow execution either by entering chmod +x <name of binary> or by right clicking the <name of binary> file, opening "Properties" and set "Is executable" in the "Permissions" tab.
Instead of entering "<path/to/your/game/root>" you need to enter the path to your dowloaded game. Assuming you unzipped the game to a "Games" Folder in your home directory, it would be something like "/home/<your account name>/Games/TRATRITLE". Instead of typing that manually, your file explorer (Dolphin on KDE or Files on GNOME, I think) can copy the path for you. Right click the directory of your game (in this case TRATRITLE) and click on "Copy Location".
Paste that into the terminal instead of "<path/to/your/game/root>".

To run the game, you need to change directory in the terminal again with
Code:
cd <path/to/your/game/root>
and then run the game with
Code:
./nw
 

tester1957

Newbie
Sep 6, 2019
60
19
These are the errors I encountered
Code:
[124204:124204:1103/194302.229293:ERROR:policy_logger.cc(157)] :components/enterprise/browser/controller/chrome_browser_cloud_management_controller.cc(163) Cloud management controller initialization aborted as CBCM is not enabled.
[1103/194302.253253:ERROR:elf_dynamic_array_reader.h(64)] tag not found
libva error: vaGetDriverNameByIndex() failed with unknown libva error, driver_name = (null)
[124238:124243:1103/194307.297341:ERROR:cert_verify_proc_builtin.cc(621)] No net_fetcher for performing AIA chasing.
[124238:124243:1103/194349.569186:ERROR:cert_verify_proc_builtin.cc(621)] No net_fetcher for performing AIA chasing.
 

Recutinerant

New Member
Jul 23, 2022
7
0
These are the errors I encountered
Code:
[124204:124204:1103/194302.229293:ERROR:policy_logger.cc(157)] :components/enterprise/browser/controller/chrome_browser_cloud_management_controller.cc(163) Cloud management controller initialization aborted as CBCM is not enabled.
[1103/194302.253253:ERROR:elf_dynamic_array_reader.h(64)] tag not found
libva error: vaGetDriverNameByIndex() failed with unknown libva error, driver_name = (null)
[124238:124243:1103/194307.297341:ERROR:cert_verify_proc_builtin.cc(621)] No net_fetcher for performing AIA chasing.
[124238:124243:1103/194349.569186:ERROR:cert_verify_proc_builtin.cc(621)] No net_fetcher for performing AIA chasing.
Can you give me the name of the game so I can have a look?
 

Recutinerant

New Member
Jul 23, 2022
7
0
the genesis order v.90111
I've tried it myself and it looks like there the error is related to gpu rendering. No idea what sort of janky stuff is going in that game.
You can try running with ./nw --disable-gpu. Doesn't work on my end, it just complains that the CPU rendering is not fast enough and it chooses to abort instead. Maybe if your CPU is beefy enough it might work, but unlikely.
 

zamu3l

Newbie
Dec 12, 2021
21
32
I had to change uname -p to uname -m in the main.cpp file, after that it works perfectly. Thank you for this tool.
 

Manual Breathing

New Member
Jul 17, 2018
2
0
Thank you for the tool. It seems to work just fine, although i only tried it out with one game. If this had some kind of GUI playing on linux would be much more accessible!
 

HasturianHallows

New Member
Nov 15, 2023
1
0
Technically not an H-game problem, but I have an infinite loading screen on Fear and Hunger 2
Here is the console log, I think it's an issue with my drivers, but I'm not sure.
Code:
[6432:6432:1117/173524.436480:ERROR:policy_logger.cc(157)] :components/enterprise/browser/controller/chrome_browser_cloud_management_controller.cc(163) Cloud management controller initialization aborted as CBCM is not enabled.
[1117/173524.896486:ERROR:file_io_posix.cc(144)] open /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq: No such file or directory (2)
[1117/173524.896860:ERROR:file_io_posix.cc(144)] open /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq: No such file or directory (2)
libva error: vaGetDriverNameByIndex() failed with unknown libva error, driver_name = (null)
[6463:6463:1117/173525.984577:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.984834:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.984893:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.984950:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.985012:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.985071:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.985126:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.985191:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.985268:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.985325:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.985394:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.985451:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.985506:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.985563:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.985621:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.985675:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.985731:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.985793:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.985853:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.985911:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.985966:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.986024:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.986079:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.986133:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.986211:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.986279:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.986336:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.986391:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.986449:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.986501:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.986557:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.986612:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.986667:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.986754:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.986817:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.986873:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.986926:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.986981:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.987035:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.987091:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173527.966515:ERROR:gl_surface_presentation_helper.cc(260)] GetVSyncParametersIfAvailable() failed for 1 times!
[6463:6463:1117/173527.974149:ERROR:gl_surface_presentation_helper.cc(260)] GetVSyncParametersIfAvailable() failed for 2 times!
[6463:6463:1117/173529.153919:ERROR:gl_surface_presentation_helper.cc(260)] GetVSyncParametersIfAvailable() failed for 3 times!
[6466:6471:1117/173530.418027:ERROR:cert_verify_proc_builtin.cc(621)] No net_fetcher for performing AIA chasing.
[6466:6471:1117/173636.952683:ERROR:cert_verify_proc_builtin.cc(621)] No net_fetcher for performing AIA chasing.
Warning: loader_scanned_icd_add: Driver /usr/lib/x86_64-linux-gnu/libvulkan_intel.so supports Vulkan 1.2, but only supports loader interface version 4. Interface version 5 or newer required to support this version of Vulkan (Policy #LDP_DRIVER_7)
Warning: loader_scanned_icd_add: Driver /usr/lib/x86_64-linux-gnu/libvulkan_lvp.so supports Vulkan 1.1, but only supports loader interface version 4. Interface version 5 or newer required to support this version of Vulkan (Policy #LDP_DRIVER_7)
Warning: loader_scanned_icd_add: Driver /usr/lib/x86_64-linux-gnu/libvulkan_radeon.so supports Vulkan 1.2, but only supports loader interface version 4. Interface version 5 or newer required to support this version of Vulkan (Policy #LDP_DRIVER_7)
Warning: Layer VK_LAYER_MESA_device_select uses API version 1.2 which is older than the application specified API version of 1.3. May cause issues.
Warning: EGL_EXT_create_context_robustness must be supported
    at Create (../../third_party/dawn/src/dawn/native/opengl/ContextEGL.cpp:66)
    at Create (../../third_party/dawn/src/dawn/native/opengl/PhysicalDeviceGL.cpp:97)
 

zamu3l

Newbie
Dec 12, 2021
21
32
Technically not an H-game problem, but I have an infinite loading screen on Fear and Hunger 2
Here is the console log, I think it's an issue with my drivers, but I'm not sure.
Code:
[6432:6432:1117/173524.436480:ERROR:policy_logger.cc(157)] :components/enterprise/browser/controller/chrome_browser_cloud_management_controller.cc(163) Cloud management controller initialization aborted as CBCM is not enabled.
[1117/173524.896486:ERROR:file_io_posix.cc(144)] open /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq: No such file or directory (2)
[1117/173524.896860:ERROR:file_io_posix.cc(144)] open /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq: No such file or directory (2)
libva error: vaGetDriverNameByIndex() failed with unknown libva error, driver_name = (null)
[6463:6463:1117/173525.984577:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.984834:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.984893:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.984950:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.985012:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.985071:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.985126:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.985191:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.985268:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.985325:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.985394:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.985451:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.985506:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.985563:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.985621:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.985675:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.985731:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.985793:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.985853:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.985911:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.985966:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.986024:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.986079:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.986133:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.986211:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.986279:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.986336:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.986391:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.986449:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.986501:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.986557:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.986612:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.986667:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.986754:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.986817:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.986873:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.986926:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.986981:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.987035:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173525.987091:ERROR:gbm_wrapper.cc(253)] Failed to export buffer to dma_buf: No such file or directory (2)
[6463:6463:1117/173527.966515:ERROR:gl_surface_presentation_helper.cc(260)] GetVSyncParametersIfAvailable() failed for 1 times!
[6463:6463:1117/173527.974149:ERROR:gl_surface_presentation_helper.cc(260)] GetVSyncParametersIfAvailable() failed for 2 times!
[6463:6463:1117/173529.153919:ERROR:gl_surface_presentation_helper.cc(260)] GetVSyncParametersIfAvailable() failed for 3 times!
[6466:6471:1117/173530.418027:ERROR:cert_verify_proc_builtin.cc(621)] No net_fetcher for performing AIA chasing.
[6466:6471:1117/173636.952683:ERROR:cert_verify_proc_builtin.cc(621)] No net_fetcher for performing AIA chasing.
Warning: loader_scanned_icd_add: Driver /usr/lib/x86_64-linux-gnu/libvulkan_intel.so supports Vulkan 1.2, but only supports loader interface version 4. Interface version 5 or newer required to support this version of Vulkan (Policy #LDP_DRIVER_7)
Warning: loader_scanned_icd_add: Driver /usr/lib/x86_64-linux-gnu/libvulkan_lvp.so supports Vulkan 1.1, but only supports loader interface version 4. Interface version 5 or newer required to support this version of Vulkan (Policy #LDP_DRIVER_7)
Warning: loader_scanned_icd_add: Driver /usr/lib/x86_64-linux-gnu/libvulkan_radeon.so supports Vulkan 1.2, but only supports loader interface version 4. Interface version 5 or newer required to support this version of Vulkan (Policy #LDP_DRIVER_7)
Warning: Layer VK_LAYER_MESA_device_select uses API version 1.2 which is older than the application specified API version of 1.3. May cause issues.
Warning: EGL_EXT_create_context_robustness must be supported
    at Create (../../third_party/dawn/src/dawn/native/opengl/ContextEGL.cpp:66)
    at Create (../../third_party/dawn/src/dawn/native/opengl/PhysicalDeviceGL.cpp:97)
can't help without knowing more info, like your hardware. Also, does this only happen with fear and hunger 2? or with other rpgm games as well? Maybe try reinstalling drivers using instructions from .
 

Minion71

Newbie
Oct 4, 2018
18
7
Well Thanks a lot. I converted "Daily Lives of My Countryside" and its working!!! Add to rename some images but nice work Thanks
 

EpyxSix

New Member
Jan 3, 2024
2
0
Hi,

Thank you for making the converter. Just trying to compile via terminal at the moment and getting the following error.

Unzipped to downloads directory and running terminal from there.

Directory has the following files : main.cpp , main.h , makefile , README.MD , gitignore.

Trying with 1.2 version.

g++ -Wall -Wextra -g -I. -O0 -c -o main.o main.cpp
make: g++: No such file or directory
make: *** [makefile:17: main.o] Error 127

Thanks for any help you can provide.
PS this is on Linux Mint
 

Recutinerant

New Member
Jul 23, 2022
7
0
Hi,

Thank you for making the converter. Just trying to compile via terminal at the moment and getting the following error.

Unzipped to downloads directory and running terminal from there.

Directory has the following files : main.cpp , main.h , makefile , README.MD , gitignore.

Trying with 1.2 version.

g++ -Wall -Wextra -g -I. -O0 -c -o main.o main.cpp
make: g++: No such file or directory
make: *** [makefile:17: main.o] Error 127

Thanks for any help you can provide.
PS this is on Linux Mint
Looks like you don't have the g++ compiler installed. Try
Code:
sudo apt install build-essential g++
This should get you the g++ on Mint.