Page 1 of 1

Gangster only zone

Posted: 05 Apr 2011, 19:19
by Gustavob
Hello,

I tried making a zone where only gang members and cops would walk on (in this case, the gang is a prisoner gang, like in Alma Mater, but its outfit is orange like in most real life prisons), but it just didn't work. Lots of peds still spawn. I tried:

Code: Select all

MAP_ZONE prisgang = ( 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 1000 , 100 , 0 )
but peds still spawned. I also tried:

Code: Select all

MAP_ZONE prisgang = ( 0 , 0 , 0 , 0 , 200 , 0 , 0 , 0 , 1000 , 100 , 200 )
which is copied from bil.mis B12 (Hut on the Hill) zone, but it also didn't work.

Any ideas?

Re: Gangster only zone

Posted: 05 Apr 2011, 19:54
by Pyro
I'm guessing your zone name is actually a gang zone. You need to make a normal navigation zone inside the gang zone for them to appear. Also, your ratios are wrong. Try this:

Code: Select all

MAP_ZONE zonename = ( 0 , 0 , 0 , 0 , 1000 , 0 , 0 , 0 , 1000 , 0 , 0 )
This sets it to no vehicles and ped density is 1000 (max) with the gang ratio at 1000. No cops, muggers, car thieves etc should spawn.

Re: Gangster only zone

Posted: 05 Apr 2011, 20:05
by Gustavob
it works, thank you