IsValidActor
From SA-MP Wiki
Description:
Checks if an actor ID is valid.
(actorid)
actorid | The 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; }
- CreateActor: Create an actor (static NPC).
- GetActorPoolSize: Gets the highest actorid created on the server.
- SetActorHealth: Set the health of an actor.