Reset - ObjectReference

Member of: ObjectReference Script

Resets this object reference to its original location, resets its inventory, resurrects it if it's an actor, and in general tries to get it back to its original state. May optionally move it to the location of the specified reference instead.

SyntaxEdit

Function Reset(ObjectReference akTarget = None) native

ParametersEdit

  • akTarget: The reference to optionally move the object that was reset to.
    • Default: None

Return ValueEdit

None.

ExamplesEdit

; Reset Joe to his original state
Joe.Reset()


; Reset Joe to his original state, but positioned at the specified marker
Joe.Reset(JoesMarker)

NotesEdit

  • This function doesn't completely reset it to the esm like you might think. For instance, faction and relationship data isn't reset.
  • If the actor is dead, disabled, and has no enable parent, Reset will enable it. Otherwise, it does not change the enable state of the actor. So if the actor was marked 'Initially Disabled', it won't be disabled by the Reset call.
  • If the object being reset is not loaded, this optional parameter will do nothing, and the reset reference will be reset to it's editor location.

See AlsoEdit