Skip to main content

GetPlayerInterior

คำอธิบาย​

Retrieves the player's current interior. A list of currently known interiors with their positions can be found on this page.

NameDescription
playeridThe player to get the interior ID of.

ส่งคืน​

The interior ID the player is currently in

ตัวอย่าง​

public OnPlayerCommandText(playerid,text[])
{
if (strcmp(cmdtext,"/int",true) == 0)
{
new string[128];
format(string, sizeof(string), "You are in interior %i",GetPlayerInterior(playerid));
SendClientMessage(playerid, 0xFF8000FF, string);
return 1;
}
return 0;
}

บันทึก​

เคล็ดลับ

Always returns 0 for NPCs.

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