/open.mp-template

GameMode write in C++

Primary LanguageC++Mozilla Public License 2.0MPL-2.0

GameMode (open.mp)

Template gamemode c++ bolt using open.mp-gdk and open.mp-sdk

Usage

Just drop release server.dll or libserver.so (depending on your operating system) in Components folder, and run your open.mp server.

Required Tools

Building on Windows

mkdir build
cd build
cmake .. -A Win32 -T ClangCL

Open Visual Studio and build the solution.

Building on Linux

mkdir build
cd build
# May need to configure this line.
export CC=/usr/lib/llvm/18/bin/clang CXX=/usr/lib/llvm/18/bin/clang++
cmake .. -G Ninja -DCMAKE_C_FLAGS=-m32 -DCMAKE_CXX_FLAGS=-m32 -DCMAKE_BUILD_TYPE=Debug
cmake --build . --config Debug

Change Debug to Release for final versions.