Background for Starfield
Member of the ScriptObject script
eventOnPlayerWaitStop(boolabInterrupted)

[DEV SERVER] Loading description...


Caveats

CK Wiki - Notes

  • Aliases and quests will automatically unregister for this event when the quest stops. Active magic effects will automatically unregister when they are removed.

Parameters

boolabInterrupted

CK Wiki Description

Whether wait was interrupted or not.


Examples

Function SomeFunction()
  RegisterForPlayerWait() ; Before we can use OnPlayerWait we must register.
EndFunction

Event OnPlayerWaitStop(bool abInterrupted)
  if abInterrupted
    Debug.Trace("Player was interrupted by something!")
  else
    Debug.Trace("Player stopped waiting")
  endIf
endEvent

Auto-Generated Example

Scriptname MyCoolScript extends ScriptObject

event OnPlayerWaitStop(bool abInterrupted)
    Debug.trace("Event received - OnPlayerWaitStop: abInterrupted = " + abInterrupted)
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.