18.10.2012, 19:29
In the NGRP script you are using it will automatically shut down server if the MySQL connection has failed, as said in reply above me.
Edit; here is the snippet from NGRP script:
Edit; here is the snippet from NGRP script:
PHP код:
if(mysql_ping(MainPipeline) == -1)
{
printf("[MySQL] (MainPipeline) Fatal Error! Could not connect to MySQL: Host %s - DB: %s - User: %s", SQL_HOST, SQL_DB, SQL_USER);
print("[MySQL] Note: Make sure that you have provided the correct connection credentials.");
SendRconCommand("exit");
}

