Skip to main content

OnVehicleStreamOut

คำอธิบาย

This callback is called when a vehicle is streamed out for a player's client (it's so far away that they can't see it).

NameDescription
vehicleidThe ID of the vehicle that streamed out.
forplayeridThe ID of the player who is no longer streaming the vehicle.

ส่งคืน

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

ตัวอย่าง

public OnVehicleStreamOut(vehicleid, forplayerid)
{
new string[48];
format(string, sizeof(string), "Your client is no longer streaming vehicle %d", vehicleid);
SendClientMessage(forplayerid, 0xFFFFFFFF, string);
return 1;
}

บันทึก

tip

NPC สามารถเรียก Callback นี้ได้

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