Skip to main content

IsObjectHiddenForPlayer

warning

This function was added in omp v1.1.0.2612 and will not work in earlier versions!

Description

Checks if an object is hidden for a player.

Parameters

NameDescription
playeridThe ID of the player.
objectidThe ID of the object to check.

Returns

true - Object is hidden for the player.

false - Object is not hidden for the player.

Examples

new gObject;

public OnGameModeInit()
{
gObject = CreateObject(1431, 921.12201, -1206.78613, 16.52670, 0.00000, 0.00000, 90.00000);
return 1;
}

public OnPlayerConnect(playerid)
{
HideObjectForPlayer(playerid, gObject);
return 1;
}

public OnPlayerSpawn(playerid)
{
if (IsObjectHiddenForPlayer(playerid, gObject))
{
printf("Object %d is hidden for player %d", gObject, playerid);
}
return 1;
}

Notes

tip

You can hide objects for a specific player with HideObjectForPlayer function.