RegisterForTutorialEvent - ScriptObject

Member of: ScriptObject

Registers this script to receive OnTutorialEvent.

Only the script that registers for an event will receive it. Other scripts will not receive the event unless they also register for it. Once the event is received, you will be unregistered automatically.

SyntaxEdit

Function RegisterForTutorialEvent( String asEventName ) Native

ParametersEdit

  • asEventName - The name of the tutorial event to register for. See OnTutorialEvent for event names.

Return ValueEdit

None

ExamplesEdit

; Register for Tutorial event
RegisterForTutorialEvent("HackingEntered")

See AlsoEdit