Cube-World-Mod-Launcher/README.md

19 lines
884 B
Markdown
Raw Permalink Normal View History

2018-10-16 05:58:45 +08:00
# Cube-World-Mod-Launcher
Supports injecting Cube World mods. DLLs must go in a folder called "Mods".
2018-10-19 01:17:26 +08:00
## Installing
2019-10-16 06:21:58 +08:00
Get the latest .fib from Releases and place it in the same folder as cubeworld.exe
2018-10-19 01:17:26 +08:00
https://github.com/ChrisMiuchiz/Cube-World-Mod-Launcher/releases
## Installing Mods
2019-09-23 07:17:15 +08:00
A "Mods" folder should be created in the same folder as cubeworld.exe, and mods should be installed by moving them into the Mods folder.
2019-09-15 07:59:24 +08:00
2019-09-23 07:17:15 +08:00
## Building the launcher or mods
2019-10-16 06:21:58 +08:00
This project currently only supports GCC, but will likely move to clang soon. This program will not even build using MSVC, not only because the inline assembly syntax is different, but because support for inline assembly was removed for x86-64.
2019-09-23 07:17:15 +08:00
All mods MUST include cwmods.h from [cwsdk](https://github.com/ChrisMiuchiz/CWSDK) to function.
Compiler/Linker flags: `-m64 -masm=intel -static -static-libgcc -static-libstdc++`