ARRCON logo

ARRCON

  •  0 ratings
In category: Games / Administrative Utilities & Control Panels

About ARRCON

Terminal-based RCON client compatible with any game servers using the Source RCON Protocol.

  •   930  
  •   0  
  •   0  
  •   0  
Github stats:
  •  Commits: N/A  
  •   N/A  
  •   N/A  
  •  Latest commit: N/A  

Deploy this app to Linode with a free $100 credit!

Languages/Platforms/Technologies:
Lincenses:

More about ARRCON

ARRCON Banner

A lightweight cross-platform RCON client compatible with any game using the Source RCON Protocol.

GitHub release (latest by date) Mentioned in Awesome-Selfhosted Downloads

Windows Workflow Status Linux Workflow Status macOS Workflow Status CodeFactor Grade

Releases  |  Wiki  |  Issues

# Features - Highly configurable - **Cross-Platform:** - Windows - Linux - macOS - **Works for any game using the [Source RCON Protocol](https://developer.valvesoftware.com/wiki/Source_RCON_Protocol)** - **Handles large packets without issue** - **Handles multi-packet responses without issue** - **Supports Minecraft Bukkit's colorized text** - You can set delays in the INI file or directly on the commandline - Supports saving a server's connection info so you can connect to it with 1 word If you've ever used `ssh`'s `config` file, this will be very familiar. *(albeit with more sensible syntax)* - This can be done in a text editor **or entirely from the commandline** - Can be used as a one-off from the commandline, or in an interactive console - Supports piped input using shell operators. For example; `echo "help" | ARRCON -S myServer` would send the `help` command to the `myServer` host - Piped commands are sent _after_ any commands explicitly specified on the commandline - You can write scripts and manually execute them with the `-f`/`--file` options in addition to shell scripts - Commands are separated by newlines - Commands from script files are sent _after_ any piped commands - Line comments can be written using semicolons `;` or pound signs '#' - Shows an indicator when the server didn't respond to your command # Installation Get the latest version for your OS from the [releases](https://github.com/radj307/ARRCON/releases) page. If you're using the [Windows](#windows) or [MacOS](#macos) versions, see the additional information below. There is no installation process required, simply extract the archive to a location of your choice, then run it using a terminal emulator. If you want to be able to run ARRCON from any working directory without specifying its location, you must [add the location to your environment's PATH variable](https://github.com/radj307/ARRCON/wiki/Adding-To-Path). ## Windows On newer versions of Windows, you may be required to "unblock" the executable before Windows will let you use it. This is because the executable isn't signed with a Microsoft-approved signing certificate, which costs upwards of [$300/year](https://docs.microsoft.com/en-us/windows-hardware/drivers/dashboard/get-a-code-signing-certificate#step-2-buy-a-new-code-signing-certificate). To unblock it, ___Right-Click___ on `ARRCON.exe` in the file explorer and click ___Properties___ at the bottom of the right-click menu. ![](https://i.imgur.com/LKLZPVX.png) Check the ___unblock___ box, then click ___Apply___. ## MacOS **If you're running macOS 10.9 or later, you must install `gcc` via [HomeBrew](https://brew.sh) or some other package manager!** If homebrew is installed, you can run this command to install and setup `gcc` automatically: `brew install gcc` This is because Apple no longer includes `libstdc++` by default as of macOS 10.9 *(See [#11](https://github.com/radj307/ARRCON/issues/11))*, which is required for ARRCON to run. ## Building from Source See [here](https://github.com/radj307/ARRCON/wiki/Building-from-Source) for a brief guide on building ARRCON from source. # Usage ARRCON is a CLI _(Command-Line Interface)_ program, which means you need to run it through a terminal. __On Windows, you can use `cmd.exe` or `powershell.exe` by R+Clicking on the start menu and selecting "Command Prompt" or "PowerShell".__ For more detailed usage instructions, see the [Getting Started](https://github.com/radj307/ARRCON/wiki) page on the wiki. To see a list of commands, use `ARRCON -h` or `ARRCON --help` To see a list of environment variables, their current values, and a description of each, use `ARRCON --print-env` ## Modes - ___Interactive Shell___ ![](https://i.imgur.com/4d4Epkb.png) Opens an interactive console session. You can send commands and view the responses in real-time. - Used by default when there are no command arguments. - Connection remains open until you disconnect or kill the process, or if the server closes. - ___One-Shot___ ![ARRCON Scripting Support](https://i.imgur.com/oPX47RD.png) This mode is designed for scripting, it sends commands directly from the commandline in sequential order before exiting. _(You can also open an interactive shell at the same time with the `-i` / `--interactive` options.)_ Supported input methods: - Commandline Parameters _These are any arguments that are __not__ short/long-opts and __not captured by__ short/long-opts._ - Shell Scripts - Redirected input from STDIN - Script Files Splits commands by line, and allows comments using a semicolon `;` or pound sign `#`. Comments are always considered line comments. _Use the '`-f`' or '`--file`' options to specify a scriptfile to load._ # Contributing If you want to add a new feature, fix a bug, or just improve something that annoys you, feel free to submit pull requests and/or issues. ## Feedback & Requests Feel free to leave feedback on the issues tab! There are a number of premade templates for the following situations: - [Questions](https://github.com/radj307/ARRCON/issues/new?assignees=radj307&labels=question&template=question.md&title=%5BQUESTION%5D+) - [Bug Reports](https://github.com/radj307/ARRCON/issues/new?assignees=radj307&labels=bug&template=bug-report.md&title=%5BBUG%5D+%E2%80%A6) - [Protocol Support Requests](https://github.com/radj307/ARRCON/issues/new?assignees=radj307&labels=bug%2C+enhancement%2C+support&template=support-request.md&title=Unsupported+Title%3A+%3Ctitle%3E) - __A note on Battleye's RCON protocol:__ Battleye's RCON protocol requires sending "keep-alive" packets at least every 45 seconds to maintain the connection, which is better suited by a multithreaded GUI application, and as such will not be implemented in ARRCON. Other protocols or game-specific implementations however, will be considered. - [Feature Requests](https://github.com/radj307/ARRCON/issues/new?assignees=&labels=enhancement%2C+new+feature+request&template=request-a-new-feature.md&title=%5BNEW%5D) - [Suggestions](https://github.com/radj307/ARRCON/issues/new?assignees=&labels=&template=change-an-existing-feature.md&title=%5BCHANGE%5D+) - [Documentation Suggestions or Additions](https://github.com/radj307/ARRCON/issues/new?assignees=&labels=documentation&template=documentation-request.md&title=%5BDOC%5D+) ## Pull Requests Feel free to submit a pull request if you've added a feature or fixed a bug with the project! Contributions are always welcomed, I'll review it as soon as I see the notification.

Comments (0)

Please login to join the discussion on this project.

ARRCON Reviews (0)

Overall Rating

None

based on 0 ratings

Please login to review this project.

No reviews for this project yet.

↑ back to top

pCloud Lifetime

Popular Projects

FluxBB

in Social Networks and Forums
 33k    0    0    0  

Nextcloud

in File Transfer & Synchronization
 21k    1    1    0  

Libreddit

in Social Networks and Forums
 7k    0    1    0  

Dashboard

in Personal Dashboards
 7k    0    0    0  

Audiobookshelf

in Audio Streaming
 6k    0    1    0  

CasaOS

in Self-hosting Solutions
 6k    0    0    0  

Mediagoblin

in Photo and Video Galleries
 5k    0    0    0  

Most Discussed

Nextcloud

in File Transfer & Synchronization
 21k    1    1    0  

Tube Archivist

in Automation
 3k    0    1    0  

OneDev

in Project Management
 2k    0    0    0  

iodine

in Proxy
 2k    0    0    0  

Alf.io

in Booking and Scheduling
 2k    0    0    0  

sysPass

in Password Managers
 1k    0    0    0  

Misskey

in Social Networks and Forums
 2k    0    0    0  
Linux VPS from $11/yr.
RackNerd VPS for $11.38/mo

Top Rated Projects

Gitea

 1 rating
in Project Management

Bagisto

 1 rating
in E-commerce

LinkAce

 1 rating
in Bookmarks and Link Sharing

Pydio

 1 rating
in File Transfer & Synchronization

Audiobookshelf

 1 rating
in Audio Streaming

Nextcloud

 1 rating
in File Transfer & Synchronization

Seafile

 1 rating
in File Transfer & Synchronization

Categories

You May Also Be Interested In

RconCli logo
RconCli cover

RconCli

CLI for executing queries on a remote Valve Source dedicate…

Lancache logo
Lancache cover

Lancache

LAN Party game caching made easy.

Pterodactyl logo
Pterodactyl cover

Pterodactyl

Management panel for game servers, with an intuitive UI for…