Cube-World-Mod-Launcher/README.md

24 lines
1023 B
Markdown
Raw 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-09-23 07:17:15 +08:00
Get the latest executable 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
## Preparing cubeworld.exe
Since Cube World is using SteamStub obfuscation, you need to remove the obfuscation using [Steamless](https://github.com/atom0s/Steamless).
2019-09-15 07:59:24 +08:00
2019-09-23 07:17:15 +08:00
## Building the launcher or mods
This project will only ever support GCC. 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.
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++`