> ## Documentation Index
> Fetch the complete documentation index at: https://docs.jaksam-scripts.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Vehicle repaired

> Triggered after a vehicle is repaired via the job actions menu, useful for adding extra repair logic.

Triggered after a vehicle is repaired with the job actions menu. Useful if you want to add an extra repair function to the current ones.

```lua Event theme={null}
AddEventHandler("jobs_creator:vehicleRepaired", function(vehicle)
    -- You can add the extra repair functions here
end)
```

### Parameters

| Name      | Data Type      | Description          |
| --------- | -------------- | -------------------- |
| `vehicle` | vehicle handle | The vehicle's handle |


## Related topics

- [Actions](/jobs-creator/client/actions/index.md)
- [Vehicle spawned](/jobs-creator/client/buyable-vehicles/vehicle-spawned.md)
- [Buyable Vehicles](/jobs-creator/server/buyable-vehicles/index.md)
