Difference between revisions of "DuplicateAllItems"
Jump to navigation
Jump to search
imported>Geckbot m (Robot: Automated text replacement (-Link to TES4 Construction Set Wiki +{{Incomplete}}\n\nLink to TES4 Construction Set Wiki)) |
imported>PoHa! (copied info; removed incomplete tag) |
||
Line 1: | Line 1: | ||
'''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== | ==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 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 | |||
[[Category:Functions]] | [[Category:Functions]] | ||
[[Category:Actor Functions]] | [[Category:Actor Functions]] |
Revision as of 15:56, 4 April 2009
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