eventOnPlayerDialogueTarget()
Description
Wiki Description
Event called when this object reference goes into dialogue with the player.
Documentation Comment
Event received when ref goes into dialogue with player
Caveats
CK Wiki - Notes
This event will be received when a ref enters a dialogue scene that is marked Player Dialogue.
Examples
Event OnPlayerDialogueTarget()
Debug.Trace("Is in Dialogue Scene with the player")
EndEventAuto-Generated Example
Scriptname MyCoolScript extends ObjectReference
event OnPlayerDialogueTarget()
Debug.trace("Event received - OnPlayerDialogueTarget")
endEvent