OnBegin - TopicInfo

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search

Member of: TopicInfo Script

Event called when a topic info starts.

Syntax[edit | edit source]

Event OnBegin(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 OnBegin(ObjectReference akSpeakerRef, bool abHasBeenSaid)
  Debug.Trace("Topic info is being said by " + akSpeakerRef)
endEvent

Notes[edit | edit source]

  • This event runs in parallel with the topic info begin fragment.

See Also[edit | edit source]