OnEnd - TopicInfo

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search

Member of: TopicInfo Script

Event called when a topic info ends.

Syntax[edit | edit source]

Event OnEnd(ObjectReference akSpeakerRef, bool abHasBeenSaid)

Parameters[edit | edit source]

  • akSpeakerRef: The object doing the talking.
  • abHasBeenSaid: Has this topic info been seen by the player before?

Examples[edit | edit source]

Event OnEnd(ObjectReference akSpeakerRef, bool abHasBeenSaid)
  Debug.Trace("Topic info has finished being said by " + akSpeakerRef)
endEvent

Notes[edit | edit source]

  • 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.

See Also[edit | edit source]