How can i put parachute,nitro,jump on a car i want

Hello iam new with developing on fivem so my question is how can you put to a car nitro,jump,parachute i want the car have stock nitro jump and parachute any ideas?

Heyy @johnGr ,

You can achieve this by adding flags to the vehicle you desire.

To enable the parachute feature, add the following flag: ‘FLAG_HAS_PARACHUTE’ to the section of the desired vehicle in the vehicles.meta file. Once added, you can use the parachute in the air by pressing the spacebar.

Additionally, by including the flag ‘FLAG_HAS_ROCKET_BOOST’ in the same section of the chosen vehicle, it will now have rocket boost capabilities.

To give you an idea, it would look something like this

<?xml version="1.0" encoding="UTF-8"?>
<CVehicleModelInfo__InitDataList>
  <Item>
    <modelName>xa21</modelName>
    <txdName>xa21</txdName>
    <handlingId>XA21</handlingId>
    <gameName>XA21</gameName>
    <vehicleClass>0</vehicleClass>
    <maxPassengers>1</maxPassengers>
    <flags>
      <!-- Other flags -->
      <Item>FLAG_HAS_PARACHUTE</Item>
      <Item>FLAG_HAS_ROCKET_BOOST</Item>
    </flags>
  </Item>
</CVehicleModelInfo__InitDataList>

Goodluck, and enjoy :smirk:

2 Likes

How do u put so the car can jump?

how put jump on car?

its easy
u add this FLAG_JUMPING_CAR in vehicles.meta files under flags


In the image you can see my flags in this case its a police car and you add this flag and save and enjoy

how put nitro on car?