26.01.2011, 04:47
It should work.
I have this and save accounts
I have this and save accounts
pawn Код:
CallBack: OneMinuteTimer()
{
if(mysql_ping() != 1)
{
mysql_reconnect();
}
for(new i = 0; i < MAX_PLAYERS; i ++ )
{
AccountInfo[i][PlayingTime] ++;//Adding one minute to the players playing time
Saveaccount(i);//Saving Account
//It works for me
}
}