eventOnEscortWaitStop()
Description
Wiki Description
Event called when this actor is running an Escort procedure, and stops waiting for the escorted actor because the escorted actor is now sufficiently close that the escorter can resume travel to the destination.
Documentation Comment
Event received when this actor is in an Escort procedure and stops waiting because the escorted actor has caught up.
Examples
Event OnEscortWaitStop()
Debug.Trace("Escorting actor stopped waiting because escorted actor caught up.")
endEventAuto-Generated Example
Scriptname MyCoolScript extends Actor
event OnEscortWaitStop()
Debug.trace("Event received - OnEscortWaitStop")
endEvent