IsValidActor

From SA-MP Wiki

Jump to: navigation, search

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


Description:

Checks if an actor ID is valid.


Parameters:
(actorid)
actoridThe ID of the actor to check.


Return Values:

  • 1 - The actor is valid.
  • 0 - The actor is not valid.


Example Usage:

new MyActor;
 
public OnGameModeInit()
{
    MyActor = CreateActor(179, 316.1, -134.0, 999.6, 90.0); // Actor as a salesperson in Ammunation.
    if(IsValidActor(MyActor))
    {    
        SetActorHealth(MyActor, 100);
    }
    return 1;
}
Personal tools
Navigation
Toolbox
In other languages