Hey there,
so basically I am currently working on a mission nad am quite new to scripting. My Problem is that I want to check if the player has killed all AI in the area and has entered a specific room.
All the triggers for that are set up and working aswell.
This is my code:
while {true} do{
if (condition1 == true && condition2 == true)
then {
hint "triggerActivation";
//execVM ""; // <-- I want to execute my other script here
}
I have set up both variables in the init.sqf.
I know it is probably very easy to answer but i could find any good information here on the forum. Hope someone can help me.