engineOn: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Some wiki formatting)
 
(68 intermediate revisions by 8 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| ofpr |= Game name
|game1= ofp
|version1= 1.90


|1.9|= Game version
|game2= ofpe
____________________________________________________________________________________________
|version2= 1.00


| Activates and deactivates the engine of a vehicle. |= Description
|game3= arma1
____________________________________________________________________________________________
|version3= 1.00


| vehicle '''engineOn''' state |= Syntax
|game4= arma2
|version4= 1.00


|p1= vehicle: [[Object]] |= Parameter 1
|game5= arma2oa
|version5= 1.50


|p2= state: [[Boolean]] - true to turn the engine on, false to turn it off |= Parameter 2
|game6= tkoh
|version6= 1.00


| [[Nothing]] |= Return value
|game7= arma3
____________________________________________________________________________________________
|version7= 0.50
 
|x1= <pre>?!(EngineOn _jeep) : _jeep engineOn true</pre> |= Example 1
____________________________________________________________________________________________


| [[isEngineOn]] |= See also
|arg= local


}}
|eff= global
 
|gr1= Object Manipulation
 
|descr= Activates and deactivates the engine of a vehicle.
 
|mp= Executed on a remote vehicle this command may turn the engine on but then it will get turned off by itself after a short while.
 
|s1= vehicle [[engineOn]] state
 
|p1= vehicle: [[Object]]
 
|p2= state: [[Boolean]] - [[true]] to turn the engine on, [[false]] to turn it off
 
|r1= [[Nothing]]


<h3 style="display:none">Notes</h3>
|x1= <sqf>if (!isEngineOn _jeep) then { _jeep engineOn true; };</sqf>
<dl class="command_description">
<!-- Note Section BEGIN -->
<!-- Note Section END -->
</dl>


<h3 style="display:none">Bottom Section</h3>
|x2= <sqf>
waitUntil { player == driver _jeep; };
vehicle player engineOn true;
</sqf>


[[Category:Scripting Commands|ENGINEON]]
|seealso= [[isEngineOn]]
[[Category:Scripting Commands OFP 1.96|ENGINEON]]
}}
[[Category:Scripting Commands OFP 1.46|ENGINEON]]
 
[[Category:Scripting Commands ArmA|ENGINEON]]
{{Note
[[Category:Command_Group:_Object_Information|{{uc:{{PAGENAME}}}}]]
|user= Benargee
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
|timestamp= 20140825222700
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
|text= To switch engine off can also use [[setFuel]] and [[fuel]]:
<sqf>
private "_gas";
_gas = fuel heli;
heli setFuel 0;
sleep 0.01;
heli setFuel _gas;
</sqf>
Also sets helicopter fuel back to original quantity. Works on every other vehicle.
}}

Latest revision as of 03:12, 10 February 2023

Hover & click on the images for description

Description

Description:
Activates and deactivates the engine of a vehicle.
Multiplayer:
Executed on a remote vehicle this command may turn the engine on but then it will get turned off by itself after a short while.
Groups:
Object Manipulation

Syntax

Syntax:
vehicle engineOn state
Parameters:
vehicle: Object
state: Boolean - true to turn the engine on, false to turn it off
Return Value:
Nothing

Examples

Example 1:
if (!isEngineOn _jeep) then { _jeep engineOn true; };
Example 2:
waitUntil { player == driver _jeep; }; vehicle player engineOn true;

Additional Information

See also:
isEngineOn

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
Benargee - c
Posted on Aug 25, 2014 - 22:27 (UTC)
To switch engine off can also use setFuel and fuel:
private "_gas"; _gas = fuel heli; heli setFuel 0; sleep 0.01; heli setFuel _gas;
Also sets helicopter fuel back to original quantity. Works on every other vehicle.