minecraft-minder/mineautoshutdown.sh
zyphlar 86d23247f8 Update 3 files
- /mineautoshutdown.sh
- /LICENSE.md
- /README.md
2023-01-26 23:43:47 +00:00

27 lines
697 B
Bash
Executable File

DO_STATUS_URL="http://example.com/minecraft.php"
PASSWORD="your_password_here"
status=$(curl -s "$DO_STATUS_URL?action=status&password=$PASSWORD")
if [[ $status == "active" ]]; then
players=$(python3 minestatus.py | jq ".players")
if [[ $players == 0 ]]; then
count=$(cat /tmp/minecount)
if [[ $count -gt 6 ]]; then
echo "players $players count $count, killing"
curl -s "$DO_STATUS_URL?action=off&password=$PASSWORD"
echo "0" > /tmp/minecount
else
echo $(($count+1)) > /tmp/minecount
echo "players $players count $count, waiting"
fi
else
echo "players $players, resetting"
echo "0" > /tmp/minecount
fi
else
echo "not active"
fi