Skip to main content

OnPlayerExitVehicle

คำอธิบาย

This callback is called when a player starts to exit a vehicle.

NameDescription
playeridThe ID of the player that is exiting a vehicle.
vehicleidThe ID of the vehicle the player is exiting.

ส่งคืน

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

ตัวอย่าง

public OnPlayerExitVehicle(playerid, vehicleid)
{
new string[35];
format(string, sizeof(string), "INFO: You are exiting vehicle %i", vehicleid);
SendClientMessage(playerid, 0xFFFFFFFF, string);
return 1;
}

บันทึก

warning

Not called if the player falls off a bike or is removed from a vehicle by other means such as using SetPlayerPos. You must use OnPlayerStateChange and check if their old state is PLAYER_STATE_DRIVER or PLAYER_STATE_PASSENGER and their new state is PLAYER_STATE_ONFOOT.

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