eventOnCommandModeEnter()
Description
Wiki Description
Event called when the player enters command mode with this actor as the commanded actor.
Documentation Comment
Event received when the player begins commanding this actor.
Examples
Event OnCommandModeEnter()
Debug.Trace("Player is now commanding this actor...")
endEventAuto-Generated Example
Scriptname MyCoolScript extends Actor
event OnCommandModeEnter()
Debug.trace("Event received - OnCommandModeEnter")
endEvent