getDamageStatusBase64
Used to get
the current damage of a vehicle.
Note that each GTA:V update will break this value and potentially crash any player who sees this in their game.
It's highly recommended that if you store this value that you wipe it with each update for alt:V or GTA:V itself.
Returns a string
.
Declaration
vehicle.getDamageStatusBase64(): string;
Usage
const damage = vehicle.getDamageStatusBase64();
Real World Example
const vehicle = new alt.Vehicle('elegy', 0, 0, 0, 0, 0, 0);
// Smash it into some walls before running this.
const damage = vehicle.getDamageStatusBase64();
These examples assume you have vehicle created or available on server-side