Native linux merge

This commit is contained in:
ChocoTaco 2020-01-02 15:10:26 -05:00
parent cb2a715e07
commit 9cf759d0ac
13 changed files with 132 additions and 271 deletions

11
_scripts/tn_heartbeat Normal file
View file

@ -0,0 +1,11 @@
#!/bin/bash
# -- Heartbeat to TribesNext's Master Server
(
while true; do
echo "Sending heartbeat to TribesNext..."
curl http://master.tribesnext.com/add/28000 &
sleep 240 ;
done
)