Jump to content

Reduce Total Running Missions?


Recommended Posts

Hey, was wondering if there's any way to reduce the total of running missions? My server host sadly can't handle having soo many AI on map at once, so ideally I'd like to keep the missions, but only have 1 spawn at a time....any way to do this?

Link to comment
Share on other sites

Open DZMSConfig.sqf and find your two mission arrays.

DZMSMajorArray = ["SM1","SM2","SM3","SM4","SM5","SM6"];
DZMSMinorArray = ["SM1","SM2","SM3","SM4","SM5","SM6"];

And make it like this:

DZMSMajorArray = ["SM1","SM2","SM3","SM4","SM5","SM6"];
DZMSMinorArray = [];
Link to comment
Share on other sites

If you wanted to keep all 12 missions but have them in one array, I guess you would have to rename the Minor mission filenames to SM7, SM8 and so on, drag them into the Major folder and then add them all to the DZMSMajorArray in DZMSConfig.sqf.

DZMSMajorArray = ["SM1","SM2","SM3","SM4","SM5","SM6","SM7","SM8","SM9","SM10","SM11","SM12"];
DZMSMinorArray = [];

You'd also have to open up each mission and rename the log text, plus use Notepad++ or whatever to rename all instances of "minor", to "major", such as the AI spawns. Use the Replace With option.

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
  • Advertisement
  • Discord

×
×
  • Create New...