mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
11 lines
351 B
Plaintext
11 lines
351 B
Plaintext
|
// by commy2
|
||
|
|
||
|
private ["_vehicle", "_fuel", "_text"];
|
||
|
|
||
|
_vehicle = _this select 0;
|
||
|
|
||
|
_fuel = _vehicle getVariable ["AGM_amountFuelCargo", getNumber (configFile >> "CfgVehicles" >> typeOf _vehicle >> "AGM_fuelCapacityCargo")];
|
||
|
|
||
|
_text = format [localize "STR_AGM_Resupply_CheckedFuelVehicleCargo", _fuel];
|
||
|
[_text] call AGM_Core_fnc_displayTextStructured;
|