Gangster only zone

Anything to do with GTA1/GTA2 modding (tools, scripts and more).
Post Reply
User avatar
Gustavob
Immortal
Posts: 407
Joined: 18 May 2009, 21:40
GH nick: Gustavob
|Gustavob|
Location: Nowhere.
Contact:

Gangster only zone

Post 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?
You just lost the game.
User avatar
Pyro
Immortal
Posts: 414
Joined: 17 Mar 2010, 04:07
GH nick: Pyro
Location: Wales, UK

Re: Gangster only zone

Post 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.
User avatar
Gustavob
Immortal
Posts: 407
Joined: 18 May 2009, 21:40
GH nick: Gustavob
|Gustavob|
Location: Nowhere.
Contact:

Re: Gangster only zone

Post by Gustavob »

it works, thank you
You just lost the game.
Post Reply