16.08.2013, 00:51
If you just need to loop through that array and find the name of the location, it's pretty simple. See if this prints the name of the location:
Otherwise, try this one:
pawn Код:
for(new i = 0; i < sizeof(gSAZones); i++)
{
print(gSAZones[0][i]);
}
pawn Код:
for(new i = 0; i < sizeof(gSAZones); i++)
{
print(gSAZones[i][0]);
}