Skip to main content

ChangeVehicleColor

คำอธิบาย

Change a vehicle's primary and secondary colors.

NameDescription
vehicleidThe ID of the vehicle to change the colors of.
color1The new vehicle's primary Color ID.
color2The new vehicle's secondary Color ID.

ส่งคืน

1: The function executed successfully. The vehicle's color was successfully changed.

0: The function failed to execute. The vehicle does not exist.

ตัวอย่าง

public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
// Change the primary color to black and the secondary color to white
ChangeVehicleColor(vehicleid, 0, 1);
return 1;
}

บันทึก

tip

Some vehicles have only a primary color and some can not have the color changed at all. A few (cement, squallo) have 4 colors, of which 2 can not be changed in SA:MP

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