eventOnCommandModeExit()
Description
Wiki Description
Event called when the player exits command mode with this actor as the commanded actor.
Documentation Comment
Event received when the player ends commanding this actor.
Examples
Event OnCommandModeExit()
Debug.Trace("Player stopped commanding this actor...")
endEventAuto-Generated Example
Scriptname MyCoolScript extends Actor
event OnCommandModeExit()
Debug.trace("Event received - OnCommandModeExit")
endEvent