greywolf907 20 Posted September 1, 2013 I would like to know if there is a way I can add something into my mission folder that would make the mission only playable in Veteran mode as I intended it to be played? So when someone else runs the mission they can not run it on regular difficulty. Thanks for any help. Share this post Link to post Share on other sites
kylania 568 Posted September 1, 2013 if (difficulty < 2) then {hint "The mission author suggests you play this mission in veteran mode or higher for the best experience."}; Suggest how you meant the mission to be played but let people play it how they want. Share this post Link to post Share on other sites
Coding 12 Posted September 1, 2013 if (difficulty != 2) then { ["end1", false, true] call BIS_fnc_endMission; }; Share this post Link to post Share on other sites
greywolf907 20 Posted September 2, 2013 Thanks for the responses you guys. Share this post Link to post Share on other sites