Increase Vehicles

in your spawn vehicles perl script, this line:

'limit' => $args{'limit'} ? $args{'limit'} : '900',

Also make sure you add new spawn points to the database.
 
Thanks,

is there anyway to determine how many vehicles represent how many will spawn

ie i originally had 500 as that number and it was giving us around 40 vehicles, so 900 = .... what number would i need for 300 vehicles.

add new spawn points to the database??? is there not already enough, is that in world_vehicles?
 
Thanks,

is there anyway to determine how many vehicles represent how many will spawn

ie i originally had 500 as that number and it was giving us around 40 vehicles, so 900 = .... what number would i need for 300 vehicles.

add new spawn points to the database??? is there not already enough, is that in world_vehicles?

trigga, take a look at your vehicles and world_vehicle table.

There is a spawn chance in the world_vehicle table and a min max spawn count in the vehicle table.

Up your vehicle maximum to something like 100 for each

Code:
UPDATE vehicle SET limit_max=100 WHERE 1 = 1

I remember thevisad mentioning something about just changing the maximum here or just set the minimum to 1.

After this, run your spawn script a couple times and you should see quite a few vehicles in the instance_vehicle table.
 
how do you add spawn points on the map overwatch?
I dont have enough spawn points to really increase the amount of how many things spawn.
 
Back
Top