30.04.2013, 14:30
So i have this array,
and for reason when loading i want it to not load into the 0th slot. Is it possible too skip it? I'm using a for loop to load stuff into it and just couldn't think of a way.
pawn Код:
new gangDB[MAX_GANGS][giitem];
pawn Код:
new rows,fields;
cache_get_data(rows,fields);
for(new i; i<rows; i++)
{
new tmp[64];
cache_get_row(i,0,tmp,dbHandler); gangDB[i][gid]=strval(tmp);
cache_get_row(i,1,tmp,dbHandler); format(gangDB[i][Leader],sizeof(tmp),tmp);
}