DumpPapyrusEventRegistrations

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search

Dumps all events a specified object (and potentially script) is registered for to the script log. (Logging must be enabled - logging is turned off by default)

Syntax[edit | edit source]

DumpPapyrusEventRegistrations formOrAlias [script]
DPER formOrAlias [script]

Parameters[edit | edit source]

  • formOrAlias: The form or alias to dump event registrations for.
    • For Forms: This can be a form ID or the form's name.
    • For Aliases: This is in the form of "Quest.Alias" where the quest is looked up using the same rules as forms.
  • Script: The script to dump event registrations for - if not specified, all scripts attached to the form will have their events dumped

Examples[edit | edit source]

DPER MQ101

Dumps all event registrations for all scripts attached to MQ101

DPER Achivements AchivementsScript

Dumps all event registrations for the AchivementsScript attached to Achievements

DPER "MQ101.Spouse"

Dumps all event registrations for all scripts attached to the Spouse alias of MQ101

See Also[edit | edit source]

DumpPapyrusPersistenceInfo
DumpEventRegistrations - Debug