Skip to content
/ GameRCON Public

Just another rcon client for Linux and Windows.

Notifications You must be signed in to change notification settings

dkoz/GameRCON

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GameRCON Client

This is a console based RCON Client for games that utilize source rcon.

Supported Games

  • Minecraft
  • Ark: Survival Ascended
  • Palworld
  • Path of Titans

Runs any game using the Source RCON Protocol.

Compile

You can compile from source using the build.bat or build.sh

Usage

Regular RCON

gamercon --host "127.0.0.1" --port "25575" --pass "rcon passoord" --command "Info"

Base64 RCON

gamercon-b64 --host "127.0.0.1" --port "25575" --pass "rcon passoord" --command "Info"

Options output

options:
  -h, --help            show this help message and exit
  -H HOST, --host HOST  Server host address
  -P PORT, --port PORT  Server RCON port
  -p PASSWORD, --pass PASSWORD
                        RCON password
  -c COMMAND, --command COMMAND
                        Command to execute on the server
  -v, --version         show program's version number and exit

Batch Script

Example batch script for quick rcon execution. Example: ./file.bat Command

@echo off
set HOST=host here
set PORT=rcon port here
set PASS=rcon pass here

set COMMAND=%1
shift
:Loop
if "%1"=="" goto Continue
set COMMAND=%COMMAND% %1
shift
goto Loop
:Continue

.\gamercon -H %HOST% -P %PORT% -p %PASS% -c "%COMMAND%"