Unofficial plugin for the Hell Let Loose (HLL) CRCON
- Select the servers on which the script will be activated. (ex : only on 1, 2, 3 and 7).
- Select the stats you want to see displayed.
- Stats can be displayed on player's connexion.
- Stats can be displayed anytime using a configurable chat command (default:
!me). - Available translations : english, french, spanish, german, russian, brazilian portuguese, polish and chinese.
Important
-
The shell commands given below assume your CRCON is installed in
/root/hll_rcon_tool
You may have installed your CRCON in a different folder.
If so, you'll have to adapt the commands below accordingly. -
Always copy/paste/execute commands
⚠️ one line at a time⚠️
- See this guide if you need help to do it.
- Copy/paste/execute these commands :
cd /root/hll_rcon_toolwget -N https://raw.githubusercontent.com/ElGuillermo/HLL_CRCON_restart/refs/heads/main/restart.sh
mkdir -p custom_tools
cd /root/hll_rcon_tool/custom_toolswget -N https://raw.githubusercontent.com/ElGuillermo/HLL_CRCON_custom_common_translations.py/refs/heads/main/common_translations.py
wget -N https://raw.githubusercontent.com/ElGuillermo/HLL_CRCON_All_time_stats/refs/heads/main/hll_rcon_tool/custom_tools/all_time_stats.py
wget -N https://raw.githubusercontent.com/ElGuillermo/HLL_CRCON_All_time_stats/refs/heads/main/hll_rcon_tool/custom_tools/all_time_stats_config.py
- Add this line in the import part, on top of the file
import custom_tools.all_time_stats as all_time_stats
- Add these lines at the very bottom of the file
@on_connected() def alltimestats_on_connected(rcon: Rcon, struct_log: StructuredLogLineWithMetaData): all_time_stats.all_time_stats_on_connected(rcon, struct_log) @on_chat def alltimestats_on_chat_command(rcon: Rcon, struct_log: StructuredLogLineWithMetaData): all_time_stats.all_time_stats_on_chat_command(rcon, struct_log)
- Set the parameters to fit your needs (see inner comments for guidance).
- Copy/paste/execute these commands :
cd /root/hll_rcon_toolsh ./restart.sh
Tip
If you don't want to use the restart.sh script :
- Copy/paste/execute these commands :
cd /root/hll_rcon_toolsudo docker compose build && sudo docker compose down && sudo docker compose up -d --remove-orphans- Revert the changes made in Installation 3/3
--
❗ Any change to these files requires to rebuild and restart CRCON Docker containers (same procedure as in Configuration 2/2) :
/root/hll_rcon_tool/rcon/hooks.py/root/hll_rcon_tool/custom_tools/common_translations.py/root/hll_rcon_tool/custom_tools/all_time_stats.py/root/hll_rcon_tool/custom_tools/all_time_stats_config.py
--
This plugin requires a modification of original CRCON file(s).
❗ If any CRCON update contains a new version of this file(s), the usual CRCON upgrade procedure will FAIL.
- Copy/paste/execute these commands :
cd /root/hll_rcon_toolcp rcon/hooks.py rcon/hooks.py.backup
git restore rcon/hooks.py
- Follow the official upgrade instructions given in the new CRCON version announcement.
- Don't restart CRCON Docker containers yet (don't execute
docker compose up -d).
- copy/paste the changes from
/root/hll_rcon_tool/rcon/hooks.py.backup
into
/root/hll_rcon_tool/rcon/hooks.py - Rebuild and restart CRCON Docker containers (same procedure as in Configuration 2/2).
- If everything works as intended, you can delete the backup file :
- Copy/paste/execute these commands :
cd /root/hll_rcon_toolrm rcon/hooks.py.backup
- Copy/paste/execute these commands :
