A simple CLI created in Python to run RCON commands for Counter-Strike 1.6 dedicated servers.
This tool is created mainly for MBG Counter-Strike server metrics.
Download the latest release.
This is a sample command to get the server status.
rcon_cs -i IP -p PORT -a PASSWORD status
Persistent mode allows the connection to stay open as long as the window is alive.
While the connection is open, only the actual commands are required by the CLI.
This is a sample .bat that will open a persistent window.
@echo off
set IP=0.0.0.0
set PORT=0
set PASSWORD=
rcon_cs -i %IP% -p %PORT% -a %PASSWORD%
Using PYInstaller
pyinstaller --onefile rcon_cs.py