Ugrás a fő tartalomhoz

ChangeVehiclePaintjob

Description

Change a vehicle's paintjob (for plain colors see ChangeVehicleColor).

NameDescription
vehicleidThe ID of the vehicle to change the paintjob of.
paintjobThe ID of the Paintjob to apply. Use 3 to remove a paintjob.

Returns

This function always returns true (success), even if the vehicle passed is not created.

Examples

new rand = random(3); // Will either be 0 1 or 2 (all valid)
new vehicleid = GetPlayerVehicleID(playerid);

ChangeVehicleColor(vehicleid, 1, 1); // making sure it is white for better result
ChangeVehiclePaintjob(vehicleid, rand); // changes the paintjob of the player's current vehicle to a random one

Notes

vigyázat

If vehicle's color is black, paintjob may not be visible. Better to make vehicle white before applying painjob by using

ChangeVehicleColor(vehicleid, 1, 1);