Skip to content
forked from KranX/Vangers

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

License

Notifications You must be signed in to change notification settings

DileSoft/Vangers

This branch is 10 commits behind KranX/Vangers:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

b8d05a0 · Jan 15, 2024
Jan 15, 2024
Jun 18, 2020
Jan 15, 2024
Jul 3, 2023
Jun 30, 2021
Aug 13, 2022
Mar 27, 2023
Jul 3, 2023
May 19, 2022
Jul 2, 2020
Nov 30, 2017
Jul 1, 2022
May 19, 2022
Jul 29, 2016
Mar 12, 2016
Apr 25, 2022
Mar 12, 2016
Mar 12, 2016

Repository files navigation

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:

  • -d: means start in detached mode
  • -v /root/websockify:/root/websockify: map host directory /root/websockify to container directory /root/websockify
  • -e SERVER=vangers.net: should be name of domain you want to host server
  • -e CERT_FILE=/root/websockify/vangers.net.cer: full path to cer file
  • -e KEY_FILE=/root/websockify/vangers.net.key: full path to key file
  • --network host: use host networking (required to bind on domain)

About

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 83.6%
  • C 6.0%
  • Pawn 5.9%
  • PHP 2.1%
  • SourcePawn 0.9%
  • CMake 0.7%
  • Other 0.8%