Difference between revisions of "DuplicateAllItems"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>Henning
imported>Henning
Line 12: Line 12:
*The Fallout 3 implementation of this command suffers from a bug. The game generates a new base object for each scripted item in the inventory to be copied. However, the new base objects are not saved in the savegame, so when the user reloads that game the duplicated items will have vanished from the inventory of the object on which this command was called. In other words, '''any scripted items copied using DuplicateAllItems will vanish on reload'''.
*The Fallout 3 implementation of this command suffers from a bug. The game generates a new base object for each scripted item in the inventory to be copied. However, the new base objects are not saved in the savegame, so when the user reloads that game the duplicated items will have vanished from the inventory of the object on which this command was called. In other words, '''any scripted items copied using DuplicateAllItems will vanish on reload'''.
*The default game does not make use of this function; likely because of the above bug
*The default game does not make use of this function; likely because of the above bug
*As an alternative you can use the [[Encounter Zone]] command
*As an alternative you can use the [[RemoveAllItems]] command





Revision as of 04:18, 6 August 2010

Syntax:

[ActorID|ContainerID.]DuplicateAllItems TargetContainerID

Example:

DuplicateAllItems DanielLittlehornREF

Duplicates all items into the target container. Any scripted item will be duplicated almost identically:

  • Any script variables will be set to 0 on the duplicate
  • The duplicate will have a new FormID, meaning if (Original == New) will never be true
    • More importantly, meaning if any script referenced the original the duplicate will not work. For instance if (player.GetItemCount ArmorLeather) will never be true if the player has the duplicate.

Notes

  • The Fallout 3 implementation of this command suffers from a bug. The game generates a new base object for each scripted item in the inventory to be copied. However, the new base objects are not saved in the savegame, so when the user reloads that game the duplicated items will have vanished from the inventory of the object on which this command was called. In other words, any scripted items copied using DuplicateAllItems will vanish on reload.
  • The default game does not make use of this function; likely because of the above bug
  • As an alternative you can use the RemoveAllItems command