انتقل إلى المحتوى الرئيسي

IsActorStreamedIn

warning

This function was added in SA-MP 0.3.7 and will not work in earlier versions!

Description

Checks if an actor is streamed in for a player.

NameDescription
actoridThe ID of the actor.
playeridThe ID of the player.

Returns

This function returns 1 if the actor is streamed in for the player, or 0 if it is not.

Examples

new gMyActor;

public OnGameModeInit()
{
gMyActor = CreateActor(0, 0.0, 0.0, 3.0, 0.0);
return 1;
}

public OnPlayerSpawn(playerid)
{
if (IsActorStreamedIn(gMyActor, playerid))
{
// Do something
}
return 1;
}