Passa al contenuto principale

GetPlayerInterior

Description

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.

Returns

The interior ID the player is currently in.

Examples

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

Notes

suggerimento

Always returns interior 0 for NPCs.