21.07.2013, 07:53
PHP код:
public LoadGZ()
{
new time = GetTickCount();
new r, f;
cache_get_data(r, f);
new idx;
for(idx = 0; idx < r; idx++)
{
GZInfo[idx][gID] = cache_get_row_int(idx, 0, mysql);
GZInfo[idx][gCoords][0] = cache_get_row_float(idx, 1, mysql);
GZInfo[idx][gCoords][1] = cache_get_row_float(idx, 2, mysql);
GZInfo[idx][gCoords][2] = cache_get_row_float(idx, 3, mysql);
GZInfo[idx][gCoords][3] = cache_get_row_float(idx, 4, mysql);
GZInfo[idx][gFrakVlad] = cache_get_row_int(idx, 5, mysql);
TOTALGZ++;
GZInfo[idx][gID] = GangZoneCreate(GZInfo[idx][gCoords][0],GZInfo[idx][gCoords][1],GZInfo[idx][gCoords][2],GZInfo[idx][gCoords][3]);
ZoneOnBattle[idx] = 0;
GZSafeTime[idx] = 0;
}
printf("[Загрузка ганг зон]: Было загружено %d - потрачено %d (ms)", TOTALGZ, GetTickCount() - time);
return 1;
}