OnVehiclePaintjob
From SA-MP Wiki
Revision as of 03:09, 30 December 2009; view current revision
←Older revision | Newer revision→
←Older revision | Newer revision→
Called when a player changes the paintjob of their vehicle (in a modshop).
(playerid, vehicleid, paintjobid)
| playerid | The ID of the player whos vehicle is modded. |
| vehicleid | The ID of the vehicle that changed paintjob. |
| paintjobid | The ID of the new paintjob. |
| Returns | This function doesn't return a specific value |
public OnVehiclePaintjob(playerid, vehicleid, paintjobid) { new string[128]; format(string, sizeof(string), "You have changed your vehicle's paintjob to %d!", paintjobid); SendClientMessage(playerid, 0x33AA33AA, string); return 1; }
Related Functions
The following functions might be useful, as they're related to this callback in one way or another.
- ChangeVehiclePaintjob: Change the paintjob on a vehicle.
- ChangeVehicleColor: Set the color of a vehicle.
Related Callbacks
The following callbacks might be useful as well, as they're related to this callback in one way or another.
- OnVehicleRespray: Called when a vehicle is resprayed.
- OnVehicleMod: Called when a vehicle is modded.
