BIS fnc onEnd: Difference between revisions
Jump to navigation
Jump to search
m (1 revision) |
Lou Montana (talk | contribs) (Page filling) |
||
Line 1: | Line 1: | ||
{{Function|= Comments | {{Function|= Comments | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
Line 8: | Line 7: | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| | | Register code to be executed after mission end. |= Description | ||
____________________________________________________________________________________________ | |||
| argument call [[BIS_fnc_onEnd]] |= Syntax | |||
|p1= argument: | |||
* [[Code]] - code to be executed | |||
* | * [[Array]] - code with arguments in format [code, arguments] | ||
* [[Number]] - remove code at given index | |||
|= Parameter 1 | |||
| [[Number]] - index of onEnd code |= Return value | |||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| < | |x1= <code>_onEndIndex = { [[player]] [[addRating]] 10000; } [[call]] [[BIS_fnc_onEnd]];</code> |= Example 1 | ||
| | |x2= <code>_onEndIndex = [{ { [[_x]] [[addRating]] 10000; } [[forEach]] [[_this]]; }, [[units]] [[group]] [[player]]] [[call]] [[BIS_fnc_onEnd]];</code> |= Example 2 | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| | | [[Event Scripts]], [[Arma_3:_Event_Handlers/addMissionEventHandler#Ended|Ended Mission Event Handler]] |= See also | ||
| |= See also | |||
}} | }} | ||
Revision as of 00:10, 3 May 2018
Description
- Description:
- Register code to be executed after mission end.
- Execution:
- call
- Groups:
- Uncategorised
Syntax
- Syntax:
- argument call BIS_fnc_onEnd
- Parameters:
- argument:
- Return Value:
- Number - index of onEnd code
Examples
- Example 1:
_onEndIndex = { player addRating 10000; } call BIS_fnc_onEnd;
- Example 2:
_onEndIndex = [{ { _x addRating 10000; } forEach _this; }, units group player] call BIS_fnc_onEnd;
Additional Information
- See also:
- Event ScriptsEnded Mission Event Handler
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note