isEngineOn: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(format)
m (Text replacement - "Killzone Kid" to "Killzone_Kid")
 
(49 intermediate revisions by 4 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


|arg= global |= Arguments in MP
|game3= arma1
____________________________________________________________________________________________
|version3= 1.00


| Returns [[true]] if engine is on, [[false]] if it is off. |= Description
|game4= arma2
____________________________________________________________________________________________
|version4= 1.00


| '''isEngineOn''' vehicle |= Syntax
|game5= arma2oa
|version5= 1.50


|p1= vehicle: [[Object]] |= Parameter 1
|game6= tkoh
|version6= 1.00


| [[Boolean]] |= Return value
|game7= arma3
____________________________________________________________________________________________
|version7= 0.50
 
|x1= <code>_OnOff = [[isEngineOn]] _carOne</code> |= Example 1
____________________________________________________________________________________________


| [[engineOn]], [[setCollisionLight]], [[isLightOn]], [[isCollisionLightOn]]|= See also
|arg= global


}}
|gr1= Object Manipulation
 
|descr= Returns [[true]] if engine is on, [[false]] if it is off.
 
|s1= [[isEngineOn]] vehicle
 
|p1= vehicle: [[Object]]


<h3 style="display:none">Notes</h3>
|r1= [[Boolean]]
<dl class="command_description">
<!-- Note Section BEGIN -->


<!-- Note Section END -->
|x1= <sqf>_carEngineIsOn = isEngineOn _carOne;</sqf>
</dl>


<h3 style="display:none">Bottom Section</h3>
|seealso= [[engineOn]] [[setCollisionLight]] [[isLightOn]] [[isCollisionLightOn]]
[[Category:Scripting Commands|ISENGINEON]]
}}
[[Category:Scripting Commands OFP 1.99|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands OFP 1.96|ISENGINEON]]
[[Category:Scripting Commands OFP 1.46|ISENGINEON]]
[[Category:Scripting Commands ArmA|ISENGINEON]]
[[Category:Command_Group:_Object_Information|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]


<!-- CONTINUE Notes -->
<dl class="command_description">
<dl class="command_description">
<dd class="notedate">Posted on March 20, 2015 - 14:32 (UTC)</dd>
 
<dt></dt>
<dd class="notedate">Posted on 2015-03-20 - 14:32 (UTC)</dd>
<dt class="note">[[User:RKillah|RKillah]]</dt>
<dt class="note">[[User:RKillah|RKillah]]</dt>
<dd class="note">[[isEngineOn]] returns [[true]] for static objects without an engine
<dd class="note">[[isEngineOn]] returns [[true]] for static objects without an engine
</dd>
</dd>
</dl>
<!-- DISCONTINUE Notes -->


<!-- CONTINUE Notes -->
<dt><dt>
<dl class="command_description">
<dd class="notedate">Posted on 2015-04-06 - 08:24 (UTC)</dd>
<dd class="notedate">Posted on April 6, 2015 - 08:24 (UTC)</dd>
<dt class="note">[[User:Killzone_Kid|Killzone_Kid]]</dt>
<dt class="note">[[User:Killzone Kid|Killzone Kid]]</dt>
<dd class="note">
<dd class="note">
Bind Engine action to User Action 1
Bind Engine action to User Action 1
<code>this [[addAction]] ["",  
<sqf>
this addAction ["",  
{
{
_this [[select]] 1 [[action]]
_this select 1 action  
[
[
["EngineOn", "EngineOff"] [[select]] [[isEngineOn]] (_this [[select]] 0),  
["EngineOn", "EngineOff"] select isEngineOn (_this select 0),  
_this [[select]] 0
_this select 0
];
];
}, "", -10, [[false]], [[true]], "User1", "_this <nowiki>==</nowiki> [[driver]] _target"];</code>
}, "", -10, false, true, "User1", "_this == driver _target"];
</sqf>
</dd>
</dd>
</dl>
</dl>
<!-- DISCONTINUE Notes -->
 
{{Note
|user= samatra
|timestamp= 20220828050658
|text= If you're a client (not server) and check remote vehicle that is far away from the camera, you'll get an outdated engine state until the vehicle and client camera position are close to each other. Distance seems to be around 6km and doesn't depend on video settings.
}}

Latest revision as of 14:48, 12 March 2024

Hover & click on the images for description

Description

Description:
Returns true if engine is on, false if it is off.
Groups:
Object Manipulation

Syntax

Syntax:
isEngineOn vehicle
Parameters:
vehicle: Object
Return Value:
Boolean

Examples

Example 1:
_carEngineIsOn = isEngineOn _carOne;

Additional Information

See also:
engineOn setCollisionLight isLightOn isCollisionLightOn

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 2015-03-20 - 14:32 (UTC)
RKillah
isEngineOn returns true for static objects without an engine
Posted on 2015-04-06 - 08:24 (UTC)
Killzone_Kid
Bind Engine action to User Action 1
this addAction ["", { _this select 1 action [ ["EngineOn", "EngineOff"] select isEngineOn (_this select 0), _this select 0 ]; }, "", -10, false, true, "User1", "_this == driver _target"];
samatra - c
Posted on Aug 28, 2022 - 05:06 (UTC)
If you're a client (not server) and check remote vehicle that is far away from the camera, you'll get an outdated engine state until the vehicle and client camera position are close to each other. Distance seems to be around 6km and doesn't depend on video settings.