Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Matchzy Overtime Manager (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. ๐Ÿš€

Notifications You must be signed in to change notification settings

sivert-io/matchzy-overtime-manager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

59 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Matchzy Overtime Manager (MOM) โšก

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.

Table of Contents ๐Ÿ“–

Features โœจ

  • ๐ŸŽง Listens for CS2 match events via get5
  • โš™๏ธ Automatically handles overtime scenarios
  • ๐Ÿ“ Written in TypeScript for type safety
  • ๐Ÿš€ Simple and lightweight Express server

Quick Start ๐Ÿš€

To quickly get started with MOM:

  1. Create a .env file based on the example:
cp .env.example .env

Open .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
  1. Run the project with Docker Compose:
docker-compose up -d

This will automatically build and start the server with the configuration in your .env file.

CS2 Server Configuration โš™๏ธ

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.

Development ๐Ÿ—๏ธ

To add new features or modify existing functionality:

  1. Start the TypeScript compiler in watch mode:
npm run dev
  1. Modify the source code in the src/ directory.
  2. Ensure changes work by running:
npm run build && npm start

Contributing ๐Ÿค

We welcome contributions! Feel free to open issues or submit pull requests. ๐ŸŽ‰

Thanks ๐Ÿ™Œ

A special thanks to:

  • ๐ŸŽฏ get5 developers for the original tournament framework.
  • ๐Ÿ”ฅ The CS2 and LAN tournament community for testing and feedback.

About

Matchzy Overtime Manager (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. ๐Ÿš€

Topics

Resources

Stars

Watchers

Forks

Contributors 2

  •  
  •