st0yanov / gomas

A Master Server for some of Valve's games written in Go.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status Go Report Card GitHub issues GitHub license

Table Of Contents

Basic Overview

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.

Installation

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.

Usage

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

Changelog

To see what has changed in recent versions of Gomas, see the CHANGELOG.

Problems

Please report and follow the resolution of any encountered problems in the issue tracker.

Contributing

Thank you for considering contributing to Gomas. Any contributions are always welcomed as long as they follow our contributing guidelines.

License

Gomas is open-sourced software licensed under the MIT license.

Contributors

About

A Master Server for some of Valve's games written in Go.

License:MIT License


Languages

Language:JavaScript 49.0%Language:CSS 48.6%Language:Go 2.1%Language:HTML 0.2%Language:Shell 0.0%