BetterDeadThanZed Posted April 13, 2014 Report Share Posted April 13, 2014 Is there a way to randomize the missions a little more? Sometimes I'll have the same mission twice in a row. I'd like some sort of system that takes a mission out of the rotation until all the missions have been cycled through. Is this possible? Link to comment Share on other sites More sharing options...
Triage Posted April 13, 2014 Report Share Posted April 13, 2014 What mission system are you using? Link to comment Share on other sites More sharing options...
BetterDeadThanZed Posted April 13, 2014 Author Report Share Posted April 13, 2014 On 4/13/2014 at 10:54 PM, Triage said: What mission system are you using? Well, this is in the DZMS forum, so... DZMS... :rolleyes: Link to comment Share on other sites More sharing options...
HolyPete Posted May 22, 2014 Report Share Posted May 22, 2014 What you are asking for is actually the opposite of random :P Link to comment Share on other sites More sharing options...
TheVampire Posted May 23, 2014 Report Share Posted May 23, 2014 The code your looking for is in DZMSMajTimer.sqf and DZMSMinTimer.sqf. //Let's check that there are missions in the array. //If there are none, lets end the timer. _cntMis = count DZMSMajorArray; if (_cntMis == 0) then { _run = false; }; //Lets pick a mission _ranMis = floor (random _cntMis); _varName = DZMSMajorArray select _ranMis; 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