fuel: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replace - "</dt>" to "")
m (Text replacement - "|= Game name" to "|Game name=")
(11 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{Command|Comments=
____________________________________________________________________________________________
____________________________________________________________________________________________


| ofp |= Game name
| ofp |Game name=


|1.00|= Game version
|1.00|Game version=


|arg= global |= Arguments in MP
|arg= global |Multiplayer Arguments=
____________________________________________________________________________________________
____________________________________________________________________________________________


| Checks how much fuel is left in the gas tank of a vehicle. |= Description
| Checks how much fuel is left in the gas tank of a vehicle. |DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[Number]] <nowiki>=</nowiki> '''fuel''' vehicle |= Syntax
| '''fuel''' vehicle |SYNTAX=


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


| [[Number]] -   
| [[Number]] -   
The returned number is in range 0 (empty tank) to 1 (full tank). |= Return value
The returned number is in range 0 (empty tank) to 1 (full tank). |RETURNVALUE=
____________________________________________________________________________________________
____________________________________________________________________________________________
   
   
|x1= <code>?(fuel ([[vehicle]] [[player]]) <nowiki>==</nowiki> 0) : [[hint]] "The vehicle is out of fuel!"</code> |= Example 1
|x1= <code>[[if]] ([[fuel]] [[vehicle]] [[player]] == 0) [[then]] {[[hint]] "The vehicle is out of fuel!"};</code> |EXAMPLE1=
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[setFuel]] |= See also
| [[setFuel]], [[setFuelCargo]], [[getFuelCargo]] |SEEALSO=


}}
}}
Line 33: Line 33:
<dt class="note">'''[[User:UNN|UNN]]'''<dd class="note">
<dt class="note">'''[[User:UNN|UNN]]'''<dd class="note">
Vehicles refuelled in game with the Fuel trucks e.t.c never get completely refuelled. After refuelling, rather than returning a value of 1 when the [[fuel]] command is called. They return a value greater than 0.98 and less than 1.
Vehicles refuelled in game with the Fuel trucks e.t.c never get completely refuelled. After refuelling, rather than returning a value of 1 when the [[fuel]] command is called. They return a value greater than 0.98 and less than 1.
</dd>
 


<!-- Note Section END -->
<!-- Note Section END -->
Line 40: Line 40:
<h3 style="display:none">Bottom Section</h3>
<h3 style="display:none">Bottom Section</h3>
[[Category:Scripting Commands|FUEL]]
[[Category:Scripting Commands|FUEL]]
[[Category:Scripting Commands OFP 1.99|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands OFP 1.96|FUEL]]
[[Category:Scripting Commands OFP 1.96|FUEL]]
[[Category:Scripting Commands OFP 1.46|FUEL]]
[[Category:Scripting Commands OFP 1.46|FUEL]]
Line 46: Line 47:
[[Category:Command_Group:_Vehicle_Assignment|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_Vehicle_Assignment|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]

Revision as of 22:46, 31 August 2019

Hover & click on the images for description

Description

Description:
Checks how much fuel is left in the gas tank of a vehicle.
Groups:
Uncategorised

Syntax

Syntax:
fuel vehicle
Parameters:
vehicle: Object
Return Value:
Number - The returned number is in range 0 (empty tank) to 1 (full tank).

Examples

Example 1:
if (fuel vehicle player == 0) then {hint "The vehicle is out of fuel!"};

Additional Information

See also:
setFuelsetFuelCargogetFuelCargo

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

UNN
Vehicles refuelled in game with the Fuel trucks e.t.c never get completely refuelled. After refuelling, rather than returning a value of 1 when the fuel command is called. They return a value greater than 0.98 and less than 1.

Bottom Section