Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.czautoz.co.uk/llms.txt

Use this file to discover all available pages before exploring further.

HUD

The helicopter HUD is displayed for both the pilot and co-pilot whenever they are seated in a cockpit seat. It shows:
ElementDescription
AirspeedTrue airspeed in knots — smoothed to remove needle and number jitter
Altitude AGLHeight above ground level in feet
Health BarCurrent helicopter HP
Pilot Control IndicatorGreen when you hold flight control, red when the other cockpit seat holds it
Autohover StatusWhether Autohover is currently active
Light Status IconsWhether the spotlight and navigation lights are on or off

Fuel System

Fuel Capacity & Burn Rate

HelicopterTank CapacityBurn RateApprox. Flight Time
MD500 Civilian242 L126 L/hr~1h 55m
MH-6 Little Bird235 L112 L/hr~2h 06m
SA342M Gazelle448 L128 L/hr~3h 30m
UH-1H Iroquois833 L333 L/hr~2h 30m
MH-60L Blackhawk1,362 L545 L/hr~2h 30m
AW101 Merlin3,222 L644 L/hr~5h 00m

Unlimited Fuel

Set fuel.burnLPH to 0 to disable fuel consumption entirely.

Custom Flight Duration Formula

fuel.burnLPH = (fuel.maxCapacity / desired_flight_minutes) * 60
Example — UH-1H for exactly 2 hours of flight:
fuel.burnLPH = (833 / 120) * 60 = 416.5

How to Refuel

There are two ways to refuel a helicopter: From a container — hold a fuel container, approach within fuel.refuelDistance metres of the helicopter, and look at the fuel refill point on the helicopter’s model. The refuel action will appear — activate it to transfer fuel from the container into the tank. At a fuel station — park near a working fuel station and use the built-in pump-refuel action. No jerry can is needed, and the fill rate is faster than a container. Accepted fuel sources:
SourceNotes
CanisterGasoline (jerry can)Standard refuel. Default: fills 10% of any tank per full can.
CZAutoz_HeliDrum (Helicopter Fuel Drum)Large drum. Default: fills 50% per drum — 2 drums to fill any helicopter from empty.
Bottle_Base itemsWater bottles, glass bottles, etc. Very small fill per bottle.
Fuel station (built-in)Vanilla, Enoch, or a Simple Gas Pump — pump-refuel directly with no container, at a faster fill rate.
Refuel amounts and drain speed per container type are configurable in mod_config.json. See Global Settings for the full table.
Helicopters spawned by the Central Economy (types.xml / events.xml) start with a partial fuel load rather than empty or full.

Refuel Settings

SettingWhat it doesDefault
fuel.refuelOnRestart1 = helicopter refuels to full on each server restart. Does not affect fresh spawns — admin-spawned helicopters always respect the spawner’s fluid choice.1
fuel.refuelDistanceMax distance in metres for the refuel action to appear5.0

Fuel Warning System

Audio warning beeps alert the crew when fuel is running low:
  • Beeps begin at the configured fuel fraction threshold
  • The beep interval shortens as fuel continues to drop — urgency increases
  • Both pilot and co-pilot hear the warning
SettingWhat it doesDefault
gameplay.fuelWarnThresholdFuel fraction at which beeps begin. 0.20 = starts at 20% remaining. Set in mod_config.json.0.20
audio.warningVolumeVolume of the fuel warning beep and rotor emergency alarm1.0
The fuel warning threshold lives in mod_config.json under gameplay. Audio volume settings (audio.engineVolume, audio.rotorVolume, audio.warningVolume, audio.crashVolume) are configured per variant in each helicopter’s JSON file under the audio section. See Per-Helicopter Settings for the full table and per-variant tuning details.