enableCopilot: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "{{Command " to "{{RV|type=command ")
m (Text replacement - "\|x([0-9])= *<code>([^<]*)<\/code>" to "|x$1= <sqf>$2</sqf>")
(17 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{RV|type=command
{{RV|type=command


| arma3
|game1= tkoh
|version1= 1.01


|0.50
|game2= arma3
|version2= 0.50


|arg= global
|arg= global
|eff= local
|eff= local


|gr1= Object Manipulation
|gr1= Object Manipulation


| Enables copilot actions, toggles availability of the actions related to copilots, such as taking over controls, suspending controls, etc. This command triggers <tt>"ControlsShifted"</tt> event handler.<br><br>
|descr= Enables copilot actions, toggles availability of the actions related to copilots, such as taking over controls, suspending controls, etc. This command triggers the {{hl|"ControlsShifted"}} event handler.
{{Informative | In multiplayer, execute this command globally to have it synced on all clients}}


| vehicle '''enableCopilot''' enable
|mp= Execute this command globally (e.g with [[remoteExec]]) to have it synced on all clients.
 
|s1= vehicle [[enableCopilot]] enable


|p1= vehicle: [[Object]] - vehicle on which to toggle copilot actions
|p1= vehicle: [[Object]] - vehicle on which to toggle copilot actions
|p2= enable: [[Boolean]] - enable or disable
|p2= enable: [[Boolean]] - enable or disable


| [[Nothing]]
|r1= [[Nothing]]


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


| [[isCopilotEnabled]], [[currentPilot]]
|seealso= [[isCopilotEnabled]] [[currentPilot]]
}}
}}


<dl class='command_description'>
<dl class="command_description">
<!-- Note Section BEGIN -->
 
<dd class="notedate">Posted on February 17, 2014
<dt><dt>
<dt class="note">[[User:Strangepete|Strangepete]]
<dd class="notedate">Posted on February 17, 2014</dd>
<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>
<dt class="note">[[User:Strangepete|Strangepete]]</dt>
* Actions: [[Arma_3:_Actions#LockVehicleControl|LockVehicleControl]], [[Arma_3:_Actions#UnlockVehicleControl|UnlockVehicleControl]], [[Arma_3:_Actions#SuspendVehicleControl|SuspendVehicleControl]] and [[Arma_3:_Actions#TakeVehicleControl|TakeVehicleControl]]<br>
<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.
* 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  
* Actions: [[Arma 3: Actions#LockVehicleControl|LockVehicleControl]], [[Arma 3: Actions#UnlockVehicleControl|UnlockVehicleControl]], [[Arma 3: Actions#SuspendVehicleControl|SuspendVehicleControl]] and [[Arma 3: Actions#TakeVehicleControl|TakeVehicleControl]]
* 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.</dd>


<!-- Note Section END -->
</dl>
</dl>
{{GameCategory|arma3|New Scripting Commands}}
{{GameCategory|arma3|Scripting Commands}}
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]

Revision as of 11:22, 13 May 2022

Hover & click on the images for description

Description

Description:
Enables copilot actions, toggles availability of the actions related to copilots, such as taking over controls, suspending controls, etc. This command triggers the "ControlsShifted" event handler.
Multiplayer:
Execute this command globally (e.g with remoteExec) to have it synced on all clients.
Groups:
Object Manipulation

Syntax

Syntax:
vehicle enableCopilot enable
Parameters:
vehicle: Object - vehicle on which to toggle copilot actions
enable: Boolean - enable or disable
Return Value:
Nothing

Examples

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

Additional Information

See also:
isCopilotEnabled currentPilot

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
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.