fuel: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\| *((\[\[[a-zA-Z0-9_ |()]+\]\],? ?)+) * \}\}" to "|seealso= $1 }}")
m (Some wiki formatting)
 
(27 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{RV|type=command
{{RV|type=command


| ofp
|game1= ofp
|version1= 1.00


|1.00
|game2= ofpe
|version2= 1.00


|arg= global
|game3= arma1
|version3= 1.00
 
|game4= arma2
|version4= 1.00


|gr1= Object Manipulation
|game5= arma2oa
|version5= 1.50


| Checks how much fuel is left in the gas tank of a vehicle.
|game6= tkoh
|version6= 1.00


| '''fuel''' vehicle
|game7= arma3
|version7= 0.50


|p1= vehicle: [[Object]]
|arg= global


| [[Number]] - 
|gr1= Object Manipulation
The returned number is in range 0 (empty tank) to 1 (full tank).
 
|x1= <code>[[if]] ([[fuel]] [[vehicle]] [[player]] == 0) [[then]] {[[hint]] "The vehicle is out of fuel!"};</code>


|seealso= [[setFuel]], [[setFuelCargo]], [[getFuelCargo]]
|descr= Checks how much fuel is left in the gas tank of a vehicle.
}}


<dl class="command_description">
|s1= [[fuel]] vehicle
<!-- Note Section BEGIN -->


<dt class="note">[[User:UNN|UNN]]<dd class="note">
|p1= vehicle: [[Object]]
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.


|r1= [[Number]] - the returned number is in range 0 (empty tank) to 1 (full tank).


<!-- Note Section END -->
|x1= <sqf>if (fuel vehicle player == 0) then { hint "The vehicle is out of fuel!" };</sqf>
</dl>


|seealso= [[setFuel]] [[setFuelCargo]] [[getFuelCargo]]
}}


[[Category:Scripting Commands OFP 1.99|{{uc:{{PAGENAME}}}}]]
{{Note
[[Category:Scripting Commands OFP 1.96|FUEL]]
|user= UNN
[[Category:Scripting Commands OFP 1.46|FUEL]]
|timestamp= 20060813123600
{{GameCategory|arma1|Scripting Commands}}
|text= 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.
{{GameCategory|arma2|Scripting Commands}}
They return a value greater than 0.98 and less than 1.
{{GameCategory|arma3|Scripting Commands}}
}}
{{GameCategory|tkoh|Scripting Commands}}


<!-- CONTINUE Notes -->
{{Note
<dl class="command_description">
|user= fusselwurm
<dd class="notedate">Posted on December 19, 2020 - 18:10 (UTC)</dd>
|timestamp= 20201219191000
<dt class="note">[[User:fusselwurm|fusselwurm]]</dt>
|text= returns
<dd class="note">
returns  
* ''1'' for units (dead or alive)
* ''1'' for units (dead or alive)
* ''0'' for ''objNull''
* ''0'' for ''objNull''
</dd>
}}
</dl>
<!-- DISCONTINUE Notes -->

Latest revision as of 13:44, 12 March 2024

Hover & click on the images for description

Description

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

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:
setFuel setFuelCargo getFuelCargo

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
UNN - c
Posted on Aug 13, 2006 - 12:36 (UTC)
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.
fusselwurm - c
Posted on Dec 19, 2020 - 19:10 (UTC)
returns
  • 1 for units (dead or alive)
  • 0 for objNull