OnPlayerHealTeammate - Actor

Member of: Actor Script

Event called when the player heals a teammate. This event is only sent to the player actor.

SyntaxEdit

Event OnPlayerHealTeammate(Actor akTeammate)

ParametersEdit

  • akTeammate: The teammate that was healed.

ExamplesEdit

; Event is only sent to the player actor
Event OnPlayerHealTeammate(Actor akTeammate)
  Debug.Trace("player healed " + akTeammate)
endEvent

NotesEdit

This event is only sent to the player actor.

See AlsoEdit