Hi, I need help. I would like to make a "mission complete" trigger that is activated once all markers have been cleared. Is this possible? If so, Would someone please show me how it is done? Thank you for your help and thank you Bangabob for a great script.
EDIT: I found a solution already posted. Due to my limited knowledge of scripting I didn't realize it the first time I read it. In a trigger Condition field I put: (getMarkerColor "X" == "ColorGreen"); "X" is the name of the marker. In the On Activation field I put: ["Mission Complete",True] call BIS_fnc_endMission; This works. However I have a new problem. I make missions with hundreds of EOS markers. Is there any way to group the markers together to be represented by the variable X in the expression: (getMarkerColor "X" == "ColorGreen"); if so, please show me how to do this. I will write out (getMarkerColor "X" == "ColorGreen") && hundreds of times if I have to, but I don't want to. Please help. Thank you.