14.08.2015, 19:58
How can i make something like : for each turf that a gang owns to give some money to the gang that owns that turf.
i tried something like this but it's not working
i tried something like this but it's not working
pawn Код:
for(new z = 0; z < sizeof(TurfsInfo); z++)
{
if(TurfsInfo[z][Owner] == gangZone[z][gangZoneID])
{
gangZone[z][gangSafe] += 50;
}
}