https://github.com/modestimpala/samplecppmod
https://github.com/modestimpala/samplecppmod
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/modestimpala/samplecppmod
- Owner: modestimpala
- Created: 2025-01-15T05:42:12.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-01-15T05:49:56.000Z (12 months ago)
- Last Synced: 2025-01-15T07:35:52.771Z (12 months ago)
- Language: C++
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SampleCppMod
Basic template for creating UE4SS C++ mods.
## Setup
1. Clone this repo
2. Update `MOD_OUTPUT_PATH` in CMakeLists.txt:
```cmake
set(MOD_OUTPUT_PATH "C:/Users/[username]/AppData/Roaming/r2modmanPlus-local/VotV/profiles/[profile-name]/shimloader/mod/[mod-name]/dlls")
```
3. Update mod info in `src/dllmain.cpp`:
```cpp
ModName = STR("YourModName");
ModVersion = STR("1.0");
ModDescription = STR("Your mod description");
ModAuthors = STR("Your name");
```
## Building
Requires:
- CMake 3.18+
- MSVC compiler (14.38-14.40 recommended)
- UE4SS development files
## Documentation
See [UE4SS 3.0.0 C++ Setup](https://github.com/modestimpala/RE-UE4SS)
See [UE4SS official modding guide](https://docs.ue4ss.com/guides/creating-a-c++-mod.html) for details.