OnVehicleRespray
From SA-MP Wiki
OnVehicleRespray
This callback is called when a player changes the color of their vehicle.
(playerid, vehicleid, color1, color2)
| playerid | The ID of the player who is driving the vehicle. |
| vehicleid | The ID of the vehicle that was resprayed. |
| color1 | The color that the vehicle's primary color was changed to. |
| color2 | The color that the vehicle's secondary color was changed to. |
This callback does not handle returns.
Note: Only called for Transfender
public OnVehicleRespray(playerid, vehicleid, color1, color2) { new string[48]; format(string, sizeof(string), "You sprayed vehicle %d to colors %d and %d!", vehicleid,color1,color2); SendClientMessage(playerid, COLOR_GREEN, string); return 1; }
Related Functions
The following functions might be useful, as they're related to this callback in one way or another.
- ChangeVehicleColor: Set the color of a vehicle.
- ChangeVehiclePaintjob: Change the paintjob on a vehicle.
Related Callbacks
The following callbacks might be useful as well, as they're related to this callback in one way or another.
- OnVehiclePaintjob: Called when a vehicle's paintjob is changed.
- OnVehicleMod: Called when a vehicle is modded.
