Background for Starfield
Member of the TopicInfo script
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)


Caveats

CK Wiki - Notes

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

Parameters

ObjectReferenceakSpeakerRef

CK Wiki Description

The object doing the talking.

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)
endEvent

Auto-Generated Example

Scriptname MyCoolScript extends TopicInfo

event OnBegin(ObjectReference akSpeakerRef, bool abHasBeenSaid)
    Debug.trace("Event received - OnBegin: akSpeakerRef = " + akSpeakerRef + " abHasBeenSaid = " + abHasBeenSaid)
endEvent

Related Pages


Additional References

View this event’s page on the Fallout 4 Creation Kit Wiki

Some data provided by the Fallout 4 Creation Kit Wiki. Licensed under the Creative Commons Attribution-Share Alike 4.0 license.