Skip to main content

OnVehicleSirenStateChange

warning

Callback นี้ถูกเพิ่มใน SA-MP 0.3.7 และจะไม่ทำงานในเวอร์ชั่นก่อนหน้านี้!

คำอธิบาย

This callback is called when a vehicle's siren is toggled.

NameDescription
playeridThe ID of the player that toggled the siren (driver).
vehicleidThe ID of the vehicle of which the siren was toggled for.
newstate0 if siren was turned off, 1 if siren was turned on.

ส่งคืน

1 - Will prevent gamemode from receiving this callback.

0 - Indicates that this callback will be passed to the gamemode.

มันถูกเรียกในฟิลเตอร์สคริปต์ก่อนเสมอ

ตัวอย่าง

public OnVehicleSirenStateChange(playerid, vehicleid, newstate)
{
if (newstate)
{
GameTextForPlayer(playerid, "~W~Siren ~G~on", 1000, 3);
}
else
{
GameTextForPlayer(playerid, "~W~Siren ~r~off", 1000, 3);
}
return 1;
}

บันทึก

tip

This callback is only called when a vehicle's siren is toggled on or off, NOT when the alternate siren is in use (holding horn).

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