12.02.2015, 20:06
Zone[TEAM_GROVE]0 = GangZoneCreate(MinX, MinX, MaxX, MaxY);
must be
Zone[TEAM_GROVE] = GangZoneCreate(MinX, MinX, MaxX, MaxY);
You have an extra '0' right before the '=' which doesn't belong there.
Also, next time please specify the line numbers, it's easier for us to debug your code.
must be
Zone[TEAM_GROVE] = GangZoneCreate(MinX, MinX, MaxX, MaxY);
You have an extra '0' right before the '=' which doesn't belong there.
Also, next time please specify the line numbers, it's easier for us to debug your code.