跳至主要内容

DestroyActor

注意

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.

NameDescription
actoridThe 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;
}