setExtra
Used to set
the current extra of a vehicle. Which means things like props that spawn in the trunk of a vehicle.
Caveat for this is that IDs are rumored to go up to 14. However, there could be more extra IDs. You can use vehicle.hasExtra
with the specified ID to determine whether or not it has an extra attached.
Declaration
vehicle.setExtra(someID: number, enabled: boolean): void;
Usage
vehicle.setExtra(0, true);
Real World Example
There is not a comprehensive example of how to use this.
const vehicle = new alt.Vehicle('dloader', 0, 0, 0, 0, 0, 0);
for(let i = 0; i < 14; i++) {
vehicle.setExtra(i, true);
}
These examples assume you have vehicle created or available on server-side