SetActorInvulnerable

From SA-MP Wiki

Jump to: navigation, search

SetActorInvulnerable 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:

Toggle an actor's invulnerability.


Parameters:
(actorid, invulnerable = true)
actoridThe ID of the actor to set invulnerability.
invulnerable0 to make them vulnerable, 1 to make them invulnerable.


Return Values:

  • 1 - Success
  • 0 - Failure (i.e. Actor is not created).


Image:32px-Circle-style-warning.png

Important
Notes

  • Once set invulnerable, the actor does not call OnPlayerGiveDamageActor.
  • Players will have actor's invulnerability state changed only when it is restreamed to them.


Example Usage:

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