Jump to content

Reducing enemy vehicles


Recommended Posts

Go to the following file:
C:\Users\YourUser\Documents\Arma 3 - Other Profiles\Stanhope\missions\co60_AW_Invade_Annex_2_86O.Altis\description.ext

Scroll down until you see: //------------------------- Parameters.  Now look for the parameters: VEHPatrol, AAPatrol, ...
And change the default values to the amount you want.

Link to comment
Share on other sites

I'll explain how it works so you can edit them to your own preferences.

Let's take one example to explain:

class VEHPatrol {
    title = "Vehicles Patrolling AO";
    values[] = {0,1,2,3,4,5,6};
    texts[] = {1,2,3,4,5,6,7};
    default = 3; // default 3
};

This is one parameter.  From the title (second line) we know that this parameter will define how many vehicles patrol in the AO.  The 4th line (texts[] = ) is the actual amount of vehicles.  (technically it's just the text the maker has given to a value but we can assume that he gave the right text to it).  The 3th line contains the value you need to put in the 5th line (default=).  So say that you only want 1 vehicle in the AO you'll have to put the default value to 0. And it'll look like this:
 

class VEHPatrol {
    title = "Vehicles Patrolling AO";
    values[] = {0,1,2,3,4,5,6};
    texts[] = {1,2,3,4,5,6,7};
    default = 0; // default 3
};

Now you'll only have 1 vehicle patrolling.  You can do the same thing for all other parameters.
 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Forum Statistics

    11.1k
    Total Topics
    66.4k
    Total Posts
×
×
  • Create New...