i already told you that in other Topic
There is no such opcode Available,
even R* have used Global Variables in Main.scm to check if Mission is Passed or not,
like
| CODE |
$mission1_Passed = 0 $mission2_Passed = 0
////////////////// In Mission////////////// :mission1_pass $mission1_Passed = 1
/////////////// Mission 2 trigger //////// :0 wait 0 if and $mission1_Passed == 1 $mission2_Passed == 0 jf @0 start mission 2
|