getAppearanceDataBase64
Used to get
the current damage appearance 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.getAppearanceDataBase64(): string;
Usage
const appearance = vehicle.getAppearanceDataBase64();
Real World Example
const vehicle = new alt.Vehicle('elegy', 0, 0, 0, 0, 0, 0);
// Smash it into some walls before running this.
const appearance = vehicle.getAppearanceDataBase64();
These examples assume you have vehicle created or available on server-side