KISS multiplayer
Multiplayer mod for BeamNG.drive
[KISS](https://en.wikipedia.org/wiki/KISS_principle) Multiplayer mod for BeamNG.drive ([Discord Channel](https://discord.gg/ANPsDkeVVF)) The project is written primarily in Lua, distributed under the Apache License 2.0 license, first published in 2020. Key topics include: beamng, kissmp, multiplayer.
KissMP

KISS Multiplayer mod for BeamNG.drive (Discord Channel)
Main features
- Cross platform, open source & free server written in Rust
- QUIC-based networking (with help of quinn and tokio for async)
- Built-in server browser with search and favourites
- Automatic synchronisation of your mods with the server
- High overall performance which allows for more players to play on the same server
- Low traffic usage and lag compensation
- In-game text chat and voice chat
- Lua API for creating server-side addons
- Client-side security settings to prevent unwanted scripts or downloads
- Cross-platform, native binaries (Windows, Linux-x86, Linux-ARM)
Contributors
KissMP was originally created by TheHellBox; with huge contributions to the core code and UI by Dummiesman and to the backend by WhiteHusky.
The project is currently led and maintained by Vlad; alongside core developers Zeit (Lua physics and UI), Florin (Lua and support), and other wonderful contributors and testers from the Discord.
Repository Structure
If you are looking to contribute to the codebase, here is how the project is organised:
text├── .github/ # GitHub Actions workflows ├── docs/ # Markdown documentation files ├── kissmp-bridge/ # Rust source: Local proxy connecting the game to servers ├── kissmp-master/ # Rust source: The master server list backend ├── kissmp-server/ # Rust source: The dedicated multiplayer server ├── KISSMultiplayer/ # Lua/UI source: The BeamNG.drive client mod ├── shared/ # Rust source: Shared networking protocols and structs ├── Cargo.toml # Rust workspace configuration └── README.md
Release Structure
When downloading a compiled release from the Releases page, the zip file contains the following structure. You only need the OS folder matching your system and the mod zip.
textKissMP_vX.X.X.zip ├── linux/ # Server and bridge binaries for Linux ├── linux-arm/ # Server binary for ARM hosts ├── windows/ # Server and bridge executables for Windows └── KISSMultiplayer.zip # The client mod (Place in your BeamNG mods folder)
Installation
Make sure to use the latest version from the Releases page.
- Drop
KISSMultiplayer.zipinto your BeamNG usermodsfolder (default on Windows:%LOCALAPPDATA%\BeamNG\BeamNG.drive\current\mods). The archive has to be namedKISSMultiplayer.zipfor the mod to work. - Extract and drop the bridge/server
.exefiles anywhere you want.
Usage
- Launch the bridge. If everything is correct, it will say "Bridge is running!" in the console.
- Launch the game. You should be able to open the KissMP UI, see the server list and hit connect.
- Enjoy playing!
Hosting a server
If you are hosting and connecting on the same PC:
- Run the bridge and the server executables.
- In the game, select Direct Connect and type
127.0.0.1.
For a friend to connect over the internet:
- Ensure they have access to your network (via port-forwarding port
3698UDP; a VPN like Hamachi/Tailscale; or any other means). - Ensure you have allowed the server through your Windows or Linux Firewall.
- They launch the bridge, open the game and Direct Connect using your public/VPN IPv4 address.
More detailed guides on server configuration and addons can be found on our Docs.
Building
First, download and install a Rust toolchain
After, clone the repository
shgit clone https://github.com/TheHellBox/KISS-multiplayer.git cd KISS-multiplayer
Now you are ready to build the server and bridge.
Server
shcd kissmp-server cargo run --release
or
shcargo run -p kissmp-server --release
Bridge
shcd kissmp-bridge cargo run --release
or
shcargo run -p kissmp-bridge --release
Contributors
Showing top 12 contributors by commit count.
