eventOnEscortWaitStart()
Description
Wiki Description
Event called when this actor is running an Escort procedure, and starts waiting for the escorted actor to catch up.
Documentation Comment
Event received when this actor is in an Escort procedure and begins waiting for the escorted actor to catch up.
Examples
Event OnEscortWaitStart()
Debug.Trace("Escorting actor started waiting for escorted actor to catch up.")
endEventAuto-Generated Example
Scriptname MyCoolScript extends Actor
event OnEscortWaitStart()
Debug.trace("Event received - OnEscortWaitStart")
endEvent