Gomas is a Master Server written in Go for some of Valve's multiplayer games. It is an implementation of the Master Server Query Protocol. The main objective of Gomas is to allow the community to run 3rd party quality master servers.
Gomas hasn't been released yet. This means there are no stable executables that you can use out of the box. Gomas is in its early stage and goes through rapid development. For that reason the only way you can run and try it out is by building it from source (Linux / MacOS):
git clone https://github.com/veskoy/gomas.git
cd gomas
go get -v -t ./...
go build -o ./gomasd ./cmd/gomasd
This will make an executable "./gomasd" which you can use to start a Master Server.
Default - the master server will listen on 127.0.0.1:27010:
./gomasd
Start a master server that will listen on specified ip address and port:
./gomasd -ip=xxx.xxx.xxx.xxx -port=xxxxx
Truncate/Seed/Reset database on startup:
./gomasd -ip=xxx.xxx.xxx.xxx -port=xxxxx -db=truncate
./gomasd -ip=xxx.xxx.xxx.xxx -port=xxxxx -db=seed
./gomasd -ip=xxx.xxx.xxx.xxx -port=xxxxx -db=reset
To see what has changed in recent versions of Gomas, see the CHANGELOG.
Please report and follow the resolution of any encountered problems in the issue tracker.
Thank you for considering contributing to Gomas. Any contributions are always welcomed as long as they follow our contributing guidelines.
Gomas is open-sourced software licensed under the MIT license.
- Author: Veselin Stoyanov