Skip to main content

OnVehiclePaintjob

คำอธิบาย

Called when a player previews a vehicle paintjob inside a mod shop. Watch out, this callback is not called when the player buys the paintjob.

NameDescription
playeridThe ID of the player that changed the paintjob of their vehicle.
vehicleidThe ID of the vehicle that had its paintjob changed.
paintjobidThe ID of the new paintjob.

ส่งคืน

It is always called first in gamemode so returning 0 there blocks other filterscripts from seeing it.

ตัวอย่าง

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;
}

บันทึก

tip

This callback is not called by ChangeVehiclePaintjob. You might use OnVehicleChangePaintjob from vSync in order to know when the player buys the paintjob.

ฟังก์ชั่นที่เกี่ยวข้องกัน