- Found in:
- Vanilla
eventOnEnd(ObjectReferenceakSpeakerRef, boolabHasBeenSaid)
Description
Wiki Description
Event called when a topic info ends.
Documentation Comment
Event called when this topic info ends (in parallel with the fragment)
Caveats
CK Wiki - Notes
- This event runs in parallel with the topic info end fragment.
- The topic info will not be considered finished until the fragment and this event on all scripts (attached to the info and remotely registered) have finished running.
Parameters
boolabHasBeenSaid
CK Wiki Description
Has this topic info been seen by the player before?
Examples
Event OnEnd(ObjectReference akSpeakerRef, bool abHasBeenSaid)
Debug.Trace("Topic info has finished being said by " + akSpeakerRef)
endEventAuto-Generated Example
Scriptname MyCoolScript extends TopicInfo
event OnEnd(ObjectReference akSpeakerRef, bool abHasBeenSaid)
Debug.trace("Event received - OnEnd: akSpeakerRef = " + akSpeakerRef + " abHasBeenSaid = " + abHasBeenSaid)
endEvent