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

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

Auto-Generated Example

Scriptname MyCoolScript extends TopicInfo

event OnEnd(ObjectReference akSpeakerRef, bool abHasBeenSaid)
    Debug.trace("Event received - OnEnd: 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.