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
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)
endEventAuto-Generated Example
Scriptname MyCoolScript extends Actor
event OnPlayerHealTeammate(Actor akTeammate)
Debug.trace("Event received - OnPlayerHealTeammate: akTeammate = " + akTeammate)
endEvent