note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to this page then please click here.
DestroyActor
warning
This function was added in SA-MP 0.3.7 and will not work in earlier versions!
Description
Destroy an actor which was created with CreateActor.
Name | Description |
---|---|
actorid | The ID of the actor to destroy. Returned by CreateActor. |
Returns
true - The function executed successfully.
false - The function failed to execute. The actor with the ID specified does not exist.
Examples
new MyActor;
public OnFilterScriptInit()
{
MyActor = CreateActor(0, 0.0, 0.0, 3.0, 0.0);
return 1;
}
public OnFilterScriptExit()
{
DestroyActor(MyActor);
return 1;
}
Related Functions
- CreateActor: Create an actor (static NPC).