- Found in:
- Vanilla
eventOnBegin(ObjectReferenceakSpeakerRef, boolabHasBeenSaid)
Description
Wiki Description
Event called when a topic info starts.
Documentation Comment
Event called when this topic info begins (in parallel with the fragment)
Parameters
boolabHasBeenSaid
CK Wiki Description
Has this topic info been seen by the player before?
Examples
Event OnBegin(ObjectReference akSpeakerRef, bool abHasBeenSaid)
Debug.Trace("Topic info is being said by " + akSpeakerRef)
endEventAuto-Generated Example
Scriptname MyCoolScript extends TopicInfo
event OnBegin(ObjectReference akSpeakerRef, bool abHasBeenSaid)
Debug.trace("Event received - OnBegin: akSpeakerRef = " + akSpeakerRef + " abHasBeenSaid = " + abHasBeenSaid)
endEvent