Difference between revisions of "Reset - Quest"

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search
imported>Goggle
m (→‎Notes: typos)
imported>Goggle
m (→‎Notes: Doesn't send events to OnReset - ObjectReference)
Line 24: Line 24:
== Notes ==
== Notes ==
* Resets the quest back to stage 0, clear all aliases, and is the only way to utilize the quest option "Allow repeated stages". It does not but the quest back into a running state, and does not refill any aliases.
* Resets the quest back to stage 0, clear all aliases, and is the only way to utilize the quest option "Allow repeated stages". It does not but the quest back into a running state, and does not refill any aliases.
* Does ''not'' send events to [[OnReset - ObjectReference]]. The two aren't related.


== See Also ==
== See Also ==
*[[Quest Script]]
*[[Quest Script]]

Revision as of 14:08, 7 September 2016

Member of: Quest Script

Resets this quest.

Syntax

Function Reset() native

Parameters

None.

Return Value

None.

Examples

; Reset the main quest
MainQuestProperty.Reset()

Notes

  • Resets the quest back to stage 0, clear all aliases, and is the only way to utilize the quest option "Allow repeated stages". It does not but the quest back into a running state, and does not refill any aliases.
  • Does not send events to OnReset - ObjectReference. The two aren't related.

See Also