enableCopilot: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(Created page with "{{Command|= Comments ____________________________________________________________________________________________ | arma3 |= Game name |0.50|= Game version ____________________...")
 
m (template:command argument fix)
(5 intermediate revisions by 4 users not shown)
Line 5: Line 5:


|0.50|= Game version
|0.50|= Game version
|arg= local|= Arguments in MP
|eff= global|= Effects in MP
____________________________________________________________________________________________
____________________________________________________________________________________________


| Enables copilot actions. |= Description
| Enables copilot actions. |DESCRIPTION=
 
____________________________________________________________________________________________
____________________________________________________________________________________________


| vehicle '''enableCopilot''' enable |= Syntax
| vehicle '''enableCopilot''' enable |SYNTAX=


|p1= vehicle: [[Object]]  |= PARAMETER1
|p1= vehicle: [[Object]]  |PARAMETER1=  


|p2= enable: [[Boolean]]  |= PARAMETER2
|p2= enable: [[Boolean]]  |PARAMETER2=  


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




|x1= <code>
|x1= <code>[[if]] (![[isCopilotEnabled]] myHeli) [[then]] {
</code>|= EXAMPLE1
    myHeli '''enableCopilot''' [[true]];
};
</code>|EXAMPLE1=  


____________________________________________________________________________________________
____________________________________________________________________________________________


| |= SEEALSO
| [[isCopilotEnabled]] |SEEALSO=  


|  |= MPBEHAVIOUR
|  |MPBEHAVIOUR=  
____________________________________________________________________________________________
____________________________________________________________________________________________
}}
}}
Line 33: Line 39:
<dl class='command_description'>
<dl class='command_description'>
<!-- Note Section BEGIN -->
<!-- Note Section BEGIN -->
<dd class="notedate">Posted on February 17, 2014
<dt class="note">'''[[User:Strangepete|Strangepete]]'''
<dd class="note">Only enables the user actions, not who is in control - pilot can lock or unlock co-pilot controls in multiplayer while still true.<br>
* Actions: [[Arma_3:_Actions#LockVehicleControl|LockVehicleControl]], [[Arma_3:_Actions#UnlockVehicleControl|UnlockVehicleControl]], [[Arma_3:_Actions#SuspendVehicleControl|SuspendVehicleControl]] and [[Arma_3:_Actions#TakeVehicleControl|TakeVehicleControl]]<br>
* You can use the [[Arma 3: Event Handlers#ControlsShifted|Arma 3 Event Handler - ControlsShifted]] to detect [[Arma_3:_Actions#TakeVehicleControl|Take]] and [[Arma_3:_Actions#SuspendVehicleControl|Release]] actions


<!-- Note Section END -->
<!-- Note Section END -->
Line 39: Line 50:
<h3 style='display:none'>Bottom Section</h3>
<h3 style='display:none'>Bottom Section</h3>
[[Category:Arma_3:_New_Scripting_Commands_List|{{uc:{{PAGENAME}}}}]]
[[Category:Arma_3:_New_Scripting_Commands_List|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_Vehicle_Assignment|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_Object_Manipulation|{{uc:{{PAGENAME}}}}]]

Revision as of 15:38, 7 April 2019

Hover & click on the images for description

Description

Description:
Enables copilot actions.
Groups:
Uncategorised

Syntax

Syntax:
vehicle enableCopilot enable
Parameters:
vehicle: Object
enable: Boolean
Return Value:
Nothing

Examples

Example 1:
if (!isCopilotEnabled myHeli) then { myHeli enableCopilot true; };

Additional Information

See also:
isCopilotEnabled

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

Posted on February 17, 2014
Strangepete
Only enables the user actions, not who is in control - pilot can lock or unlock co-pilot controls in multiplayer while still true.

Bottom Section