onTeamSwitch: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<code>([^ ]*)\[\[([a-zA-Z][a-zA-Z0-9_]+)\]\]([^ ]*)<\/code>" to "<code>$1$2$3</code>")
m (Text replacement - "\|x([0-9])= *<code>([^<]*)<\/code>" to "|x$1= <sqf>$2</sqf>")
Line 30: Line 30:
|r1= [[Nothing]]
|r1= [[Nothing]]


|x1= <code>onTeamSwitch { [_from, _to] execVM "myTeamSwitchScript.sqf"; };</code>
|x1= <sqf>onTeamSwitch { [_from, _to] execVM "myTeamSwitchScript.sqf"; };</sqf>


|seealso= [[Team Switch]] [[enableTeamSwitch]] [[onBriefingTeamSwitch]] [[teamSwitch]] [[teamSwitchEnabled]]
|seealso= [[Team Switch]] [[enableTeamSwitch]] [[onBriefingTeamSwitch]] [[teamSwitch]] [[teamSwitchEnabled]]
}}
}}

Revision as of 11:24, 13 May 2022

Hover & click on the images for description

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.
This command is deprecated. Since Arma 3 v1.57 a stackable version of this EH is available: TeamSwitch


When player switches and leaves behind AI unit, you need to enable "TeamSwitch" AI on it (with onTeamSwitch { _from enableAI "TeamSwitch" };) so that the unit continues with waypoints.
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

See also:
Team Switch enableTeamSwitch onBriefingTeamSwitch teamSwitch teamSwitchEnabled

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