VN_fnc_endMission
Jump to navigation
Jump to search
← back to Functions | Introduced in S.O.G. Prairie Fire v1.00 by Ethan Johnson |
|
Description
End mission with either a fade to black or a cinematic outro.
Syntax
- Syntax
- [_endName,_win,_fade,_playMusic,_cancelTasks,_end_code] call VN_fnc_endMission;
- Parameters
- _endName: String - (Optional, default
"end1"
) CfgDebriefing class which is used as the mission ending template. - _win: Boolean - (Optional, default
true
) Win/Loss. - _fade: BOOL/NUMBER - (Optional, default
true
) NUMBER to fade to black in X seconds (will not play music), BOOL to do special outro (with music if enabled). - _playMusic: Boolean - (Optional, default
true
) BOOL to play music. - _cancelTasks: Boolean - (Optional, default
false
) BOOL to cancel tasks that haven't been completed. - _end_code: Code - (Optional, default
{true}
) CODE to call after splash, but before debriefing screen shows. - Return value
- Boolean - Function reached the end.
Examples
- Example 1
- ["end1"] call vn_fnc_endMission;