mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
25 lines
444 B
Plaintext
25 lines
444 B
Plaintext
/*
|
|
* Author: GitHawk
|
|
* Set the remaining fuel amount.
|
|
*
|
|
* Arguments:
|
|
* 0: Fuel Truck <OBJECT>
|
|
* 1: Amount (in liters)<NUMBER>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [fuelTruck, 42] call ace_refuel_fnc_setFuel
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
private ["_maxFuel"];
|
|
params ["_target", "_fuel"];
|
|
|
|
if (isNull _target ||
|
|
{isNil "_fuel"}) exitWith {};
|
|
|
|
_target setVariable [QGVAR(currentFuelCargo), _fuel, true];
|