2016-08-18 16:37:38 +00:00
---
layout: wiki
title: Refuel
2021-12-02 14:40:46 +00:00
component: refuel
2016-08-30 13:49:04 +00:00
description: Adds the option to refuel vehicles.
2016-08-18 16:37:38 +00:00
group: feature
category: interaction
parent: wiki
2016-08-30 13:49:04 +00:00
mod: ace
version:
major: 3
minor: 4
patch: 0
2016-08-18 16:37:38 +00:00
---
## 1. Overview
This adds the option to refuel vehicles. The basic concept of refuel a vehicle is similar to reality. You need to interact with the fuel source (i.e. fuel truck, gas pump, ...), the fuel nozzle and the vehicle you want to refuel.
## 2. Usage
### 2.1 Start refueling vehicles
2017-10-24 13:39:32 +00:00
- Interact with the fuel source < kbd > ⊞ Win</ kbd > (ACE3 default key bind `Interact Key` ).
2016-08-18 16:37:38 +00:00
- Select `Take fuel nozzle` . Your character will holster his weapon and receive a fuel nozzle.
2017-10-24 13:39:32 +00:00
- Walk close to the vehicle you want to refuel and follow the instructions on the screen to connect the nozzle.
- Refueling starts automatically after nozzle connecting if possible.
2016-08-18 16:37:38 +00:00
Refueling takes some time which depends on its fuel tank size, the vehicle type and the module settings.
### 2.2 Returning the nozzle
- Interact with the nozzle < kbd > ⊞ Win</ kbd > (ACE3 default key bind `Interact Key` ).
- Select `Stop fueling` if refueling is still under way.
- Select `Take fuel nozzle` which is only possible after stopping. Your character will holster his weapon and pick up the fuel nozzle.
2017-10-24 13:39:32 +00:00
- Walk close to the fuel source and follow the instructions on the screen to return the nozzle.
2016-08-18 16:37:38 +00:00
### 2.3 Checking the remaining fuel
- Interact with the fuel truck < kbd > ⊞ Win</ kbd > (ACE3 default key bind `Interact Key` ).
- Select `Check remaining fuel` .
- A hint will display the remaining fuel in liters.
### 2.4 Checking the fuel counter
2017-10-24 13:39:32 +00:00
- Interact with the fuel source < kbd > ⊞ Win</ kbd > (ACE3 default key bind `Interact Key` ).
2016-08-18 16:37:38 +00:00
- Select `Check fuel counter` .
- A hint will display the fueled amount in liters.
## 3. FAQ
### Can I drop the nozzle?
2017-10-24 13:39:32 +00:00
Yes, follow the instructions on the screen.
2016-08-18 16:37:38 +00:00
### Can I pick up a nozzle?
Yes, using the interact menu < kbd > ⊞ Win</ kbd > (ACE3 default key bind `Interact Key` ).
### The nozzle was dropped. What's wrong?
You can only use the nozzle within a close distance from its source. You may need to park closer.
2017-10-24 13:39:32 +00:00
### The engine of the fuel truck can't be on. Why?
2016-08-18 16:37:38 +00:00
While refueling, you can't move the fuel truck. Return the nozzle.
### How do I replenish the fuel supply on a fuel truck?
Please check the framework description for more details.
2017-05-31 16:30:48 +00:00
### How do I increase the length of the hose?
There is a global setting that will effect all vehicles and static pumps. To only effect a specific vehicle put the following in it's init box:
2021-10-31 19:48:47 +00:00
```sqf
2017-05-31 16:30:48 +00:00
this setVariable ["ace_refuel_hoseLength", 30];
```