Is it imposiible to finish a mission without using an end trigger? I mean looks like it is impossible to finish a mission without setting the type of trigger to one of the END# types or LOSE.
---------- Post added at 11:56 AM ---------- Previous post was at 10:40 AM ----------

Originally Posted by
Shuko
Why not just do the end with titletext etc, then endmission with a generic "game over" for debriefing.
i have set 3 variables and then put them in the condition field of a trigger:
Code:
if ((endblu2) || (endpmc2) || (endred2)) then {endmission "END4"}
Trigger type is END4.
This does not work and mission does not end even though i'm pretty sure one of those variables are being set to true! as soon as one of those conditions is met mission should end but it does not. Also tried it like this on condition field:
Code:
endblu2 or endpmc2 or endred2
does not work
but when i have only one of these variables like this for instance:
or
it works!!
Dunno what i'm doing wrong here. I want to do it like this to save some END types.