onTeamSwitch: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "_{10,} " to "") |
Lou Montana (talk | contribs) m (Text replacement - " *\| *([Cc]omments|COMMENTS|Game|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Multiplayer Arguments( \("local" or "global"\))?|Effects|Multiplayer Effects( \("local" or "global"\))?|Multiplayer Exe...) |
||
Line 1: | Line 1: | ||
{{Command | {{Command | ||
| arma2 | | arma2 | ||
|1.00 | |1.00 | ||
|gr1= Team Switch | |gr1= Team Switch | ||
|gr2= Event Handlers | |gr2= Event Handlers | ||
| Defines an action performed when the team switch is finished. | | Defines an action performed when the team switch is finished. | ||
Line 14: | Line 14: | ||
{{Informative|Since '''Arma 3''' ''v1.57'' a stackable version of this EH is available: [[Arma_3:_Event_Handlers/addMissionEventHandler#TeamSwitch|TeamSwitch]]}} | {{Informative|Since '''Arma 3''' ''v1.57'' a stackable version of this EH is available: [[Arma_3:_Event_Handlers/addMissionEventHandler#TeamSwitch|TeamSwitch]]}} | ||
<br> | <br> | ||
{{Informative | When player switches and leaves behind AI unit, you need to enable "TeamSwitch" AI on it (with {{Inline code|[[onTeamSwitch]] { _from [[enableAI]] "TeamSwitch" };}}) so that the unit continues with [[waypoints]]. }} | {{Informative | When player switches and leaves behind AI unit, you need to enable "TeamSwitch" AI on it (with {{Inline code|[[onTeamSwitch]] { _from [[enableAI]] "TeamSwitch" };}}) so that the unit continues with [[waypoints]]. }} | ||
| [[onTeamSwitch]] commandset | | [[onTeamSwitch]] commandset | ||
|p1= commandset: [[String]] or [[Code]] | |p1= commandset: [[String]] or [[Code]] | ||
|p2 | |p2= | ||
|p3 | |p3= | ||
| [[Nothing]] | | [[Nothing]] | ||
|x1= <code>[[onTeamSwitch]] { [_from, _to] [[execVM]] "myTeamSwitchScript.sqf"; };</code> | |x1= <code>[[onTeamSwitch]] { [_from, _to] [[execVM]] "myTeamSwitchScript.sqf"; };</code> | ||
| [[Team Switch]], [[enableTeamSwitch]], [[onBriefingTeamSwitch]], [[teamSwitch]], [[teamSwitchEnabled]] | | [[Team Switch]], [[enableTeamSwitch]], [[onBriefingTeamSwitch]], [[teamSwitch]], [[teamSwitchEnabled]] | ||
| |MPBEHAVIOUR= | | |MPBEHAVIOUR= |
Revision as of 01:23, 18 January 2021
Description
- Description:
- Defines an action performed when the team switch is finished.
Commandset receives the following special variables: _from object previous unit, _to object current unit.
Consecutive use of onTeamSwitch command will overwrite previously set commandset.
- Groups:
- Team SwitchEvent Handlers
Syntax
- Syntax:
- onTeamSwitch commandset
- Parameters:
- commandset: String or Code
- Return Value:
- Nothing
Examples
- Example 1:
onTeamSwitch { [_from, _to] execVM "myTeamSwitchScript.sqf"; };
Additional Information
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