tkdmaster Posted May 28, 2014 Report Share Posted May 28, 2014 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 More sharing options...
tkdmaster Posted May 28, 2014 Author Report Share Posted May 28, 2014 Hm, no one have any idea how i'd go about doing this? Link to comment Share on other sites More sharing options...
TheVampire Posted May 28, 2014 Report Share Posted May 28, 2014 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 More sharing options...
UKSS Posted May 28, 2014 Report Share Posted May 28, 2014 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 More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now