KranX / Vangers

The video game that combines elements of the racing and role-playing genres.
https://store.steampowered.com/app/264080/Vangers/
GNU General Public License v3.0
660 stars 89 forks source link
game sdl2 video-game

Vangers

Vangers

Vangers CI Vangers CI Vangers CI Vangers CI Join the chat at https://t.me/vangers

Video game that combines elements of the racing and role-playing genres.

All source code is published under the GPLv3 license.

The necessary resources for the game (maps, sounds, textures, etc.) you can take from the games purchased here:

http://store.steampowered.com/app/264080

http://www.gog.com/game/vangers

Required libraries

You can see the wiki pages to learn how to build this project.

Server

To host server you can use Docker image or build server manually.

To use docker image you need to pull vangers-server image and run it:

docker pull caiiiycuk/vangers-server:latest
docker run -v host-dir:container-dir -e SERVER=<server-name> -e CER_FILE=<path-to-cer-file> -e KEY_FILE=<path-to-key-file> caiiiycuk/vangers-server:latest

Vangers server requires cer/key files to host wss server. For example, if you want to host server on vangers.net and your cer/key files are in /root/websockify/ file, then you run command will be:

docker run -d -v /root/websockify:/root/websockify -e SERVER=vangers.net -e CER_FILE=/root/websockify/vangers.net.cer -e KEY_FILE=/root/websockify/vangers.net.key --network host caiiiycuk/vangers-server

Explanation: