OnPlayerHealTeammate - Actor

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search

Member of: Actor Script

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

Syntax[edit | edit source]

Event OnPlayerHealTeammate(Actor akTeammate)

Parameters[edit | edit source]

  • akTeammate: The teammate that was healed.

Examples[edit | edit source]

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

Notes[edit | edit source]

This event is only sent to the player actor.

See Also[edit | edit source]