top of page

UNLIMITED VEHICLE FUEL
This script allow to have unlimited fuel in your vehicles
​
​
STEP 1
Place vehicle and in INIT box past this :
nul = [this] execVM "unlimitedFuel.sqf";
STEP 2
Go there : C:\Users\your_profile\Documents\ArmA 3\MPmissions\<your mission>
Create text file and past this inside :
_unit = _this select 0;
while{alive _unit} do
{
if (fuel _unit <= 0.2) then
{
_unit setFuel 1;
};
sleep 10;
};
​
Save text file as "unlimitedFuel.sqf" in your mission folder
Go to your map on Arma Editor and save your map, export to multiplayer (Files -> Export to multiplayer on the top left)
bottom of page