20.07.2013, 15:59
Вообщемто стоит проблема не грузит последнюю ганг зону не знаю как исправить...
Вот код загрузки:
Вот скрин что получается:
Вот код загрузки:
PHP код:
public LoadGZ()
{
new time = GetTickCount();
new r, f;
cache_get_data(r, f);
new idx;
for(idx = 1; idx < r; idx++)
{
GZInfo[idx][gID] = cache_get_row_int(idx-1, 0, mysql);
GZInfo[idx][gCoords][0] = cache_get_row_float(idx-1, 1, mysql);
GZInfo[idx][gCoords][1] = cache_get_row_float(idx-1, 2, mysql);
GZInfo[idx][gCoords][2] = cache_get_row_float(idx-1, 3, mysql);
GZInfo[idx][gCoords][3] = cache_get_row_float(idx-1, 4, mysql);
GZInfo[idx][gFrakVlad] = cache_get_row_int(idx-1, 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;
}