11.07.2015, 12:48
Can you try to insert a delay before calling mysql_close? Something like this:
Код:
public OnGameModeExit()
{
new tc = tickcount();
while((tickcount() - tc) < 2000)
{ }
mysql_close();
}
