Background for Starfield
Member of the Actor script
eventOnPlayerHealTeammate(ActorakTeammate)

Description

Wiki Description

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

Documentation Comment

Received when player heals his teammate


Caveats

CK Wiki - Notes

This event is only sent to the player actor.


Parameters

  1. ActorakTeammate

    CK Wiki Description

    The teammate that was healed.


Examples

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

Auto-Generated Example

Scriptname MyCoolScript extends Actor

event OnPlayerHealTeammate(Actor akTeammate)
    Debug.trace("Event received - OnPlayerHealTeammate: akTeammate = " + akTeammate)
endEvent

Related Pages


Additional References

View this event’s page on the Fallout 4 Creation Kit Wiki

Some data provided by the Fallout 4 Creation Kit Wiki. Licensed under the Creative Commons Attribution-Share Alike 4.0 license.