30.07.2016, 00:59
It seems like everything loads perfectly fine. You've just haven't defined the gamemode text.
PHP код:
public OnGameModeInit()
{
SetGameModeText("Gamemode Here.");
mysql_log(LOG_ALL);
mysql = mysql_connect(MYSQL_HOST, MYSQL_USER, MYSQL_DATABASE, MYSQL_PASSWORD);
if(mysql_errno() != 0)
{
printf("[MySQL] The connection has failed.");
}
else
{
printf("[MySQL] The connection was successful.");
}
return true;
}

