onTeamSwitch: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (template:command argument fix)
Line 15: Line 15:
| '''onTeamSwitch''' commandset |= Syntax
| '''onTeamSwitch''' commandset |= Syntax


|p1= commandset:  [[String]] or [[Code]]  |= PARAMETER1
|p1= commandset:  [[String]] or [[Code]]  |PARAMETER1=  


|p2= |= PARAMETER2
|p2= |PARAMETER2=  


|p3= |= PARAMETER3
|p3= |PARAMETER3=  


| [[Nothing]] |= RETURNVALUE
| [[Nothing]] |RETURNVALUE=  




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


____________________________________________________________________________________________
____________________________________________________________________________________________


| [[Team_Switch]], [[enableTeamSwitch]], [[onBriefingTeamSwitch]], [[teamSwitch]], [[teamSwitchEnabled]] |= SEEALSO
| [[Team_Switch]], [[enableTeamSwitch]], [[onBriefingTeamSwitch]], [[teamSwitch]], [[teamSwitchEnabled]] |SEEALSO=  


|  |= MPBEHAVIOUR
|  |MPBEHAVIOUR=  
____________________________________________________________________________________________
____________________________________________________________________________________________
}}
}}

Revision as of 11:35, 7 April 2019

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.
Since Arma 3 v1.57 a stackable version of this EH is available: TeamSwitch
NOTE: When player switches and leaves behind AI unit, you need to enable "TeamSwitch" AI on it onTeamSwitch {_from enableAI "TeamSwitch"}; so that the unit continues with waypoints
Groups:
Uncategorised

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_SwitchenableTeamSwitchonBriefingTeamSwitchteamSwitchteamSwitchEnabled

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

Notes

Bottom Section