Created
September 17, 2014 10:28
-
-
Save ticklemynausea/6947c527247e5a1d07f9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
RCON=/home/minecraft/mcrcon/mcrcon.sh | |
$RCON say ATENÇÃO! O servidor será automaticamente reiniciado dentro de 5 minutos! | |
sleep 120 | |
$RCON say ATENÇÃO! O servidor será automaticamente reiniciado dentro de 3 minutos! | |
sleep 60 | |
$RCON say ATENÇÃO! O servidor será automaticamente reiniciado dentro de 2 minutos! | |
sleep 60 | |
$RCON say ATENÇÃO! O servidor será automaticamente reiniciado dentro de 1 minuto! | |
sleep 30 | |
$RCON say ATENÇÃO! O servidor será automaticamente reiniciado dentro de 30 segundos! | |
sleep 30 | |
$RCON say Servidor a reiniciar... | |
sleep 1 | |
echo true > /home/minecraft/.minecraft-stop-restart | |
$RCON stop | |
echo false > /home/minecraft/.minecraft-stop-restart |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment