MOM is an extension for the MatchZy CS2 plugin. It runs as an Express server in TypeScript, listens for get5 events, and enforces custom overtime rules to prevent excessive overtimes in tournaments. ๐ฎ๐
Caution
This plugin cannot be run simultaneously with any get5 panel, as it takes over the endpoint used by the panel. MOM uses the same logic to receive events from the server as a get5 panel would. If you need to use both at the same time, you will have to create a middle-man service to forward events to both, or modify either the get5-panel or this plugin to handle event forwarding.
- Features โจ
- Quick Start ๐
- CS2 Server Configuration โ๏ธ
- Development ๐๏ธ
- Contributing ๐ค
- Thanks ๐
- ๐ง Listens for CS2 match events via get5
- โ๏ธ Automatically handles overtime scenarios
- ๐ Written in TypeScript for type safety
- ๐ Simple and lightweight Express server
To quickly get started with MOM:
- Create a .env file based on the example:
cp .env.example .envOpen .env and modify the values to match your server configuration, for example:
# Use server-id as prefix. e.g. server1_<variable_name>
server1_rcon_host="127.0.0.1"
server1_rcon_port="27016"
server1_rcon_password="your_rcon_password"
# Maximum number of rounds allowed before calculating the winner
max_rounds=30- Run the project with Docker Compose:
docker-compose up -dThis will automatically build and start the server with the configuration in your .env file.
To make get5 send match events to MOM, update your CS2 serverโs matchzy_remote_log_url parameter:
Add this line to your /game/csgo/cfg/MatchZy/live.cfg file at the top:
matchzy_remote_log_url "http://127.0.0.1:3000/events"
matchzy_remote_log_header_key "server-id"
matchzy_remote_log_header_value "server1"Replace 127.0.0.1 with the actual IP address of your MOM server (if running on a different host).
Update field matchzy_remote_log_header_value with a unique ID for your server.
To add new features or modify existing functionality:
- Start the TypeScript compiler in watch mode:
npm run dev- Modify the source code in the src/ directory.
- Ensure changes work by running:
npm run build && npm startWe welcome contributions! Feel free to open issues or submit pull requests. ๐
A special thanks to:
- ๐ฏ get5 developers for the original tournament framework.
- ๐ฅ The CS2 and LAN tournament community for testing and feedback.