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.
SetActorInvulnerable
warning
This function was added in SA-MP 0.3.7 and will not work in earlier versions!
Description
Toggle an actor's invulnerability.
Name | Description |
---|---|
actorid | The ID of the actor to set invulnerability. |
bool:invulnerable | 'false' to make them vulnerable, 'true' to make them invulnerable. |
Returns
true - Success
false - Failure (i.e. Actor is not created).
Examples
new gMyActor;
public OnGameModeInit()
{
gMyActor = CreateActor(179, 316.1, -134.0, 999.6, 90.0); // Actor as a salesperson in Ammunation.
SetActorInvulnerable(gMyActor, true);
return 1;
}
Notes
warning
Once set invulnerable, the actor does not call OnPlayerGiveDamageActor. Players will have actor's invulnerability state changed only when it is restreamed to them.
Related Functions
- IsActorInvulnerable: Check if an actor is invulnerable.