Difference between revisions of "AddItem"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>SnakeChomp
(Use function template. Move bug into specific bugs section. Reword examples.)
imported>DewiMorgan
m (→‎See Also: +TES4CS Wiki link)
Line 38: Line 38:
*[[RemoveItem]]
*[[RemoveItem]]
*[[AddItemHealthPercent]]
*[[AddItemHealthPercent]]
 
*Link to TES4 Construction Set Wiki: [http://cs.elderscrolls.com/constwiki/index.php/AddItem AddItem]
[[Category:Functions]]
[[Category:Functions]]

Revision as of 12:03, 13 April 2009

< [[::Category:Functions|Category:Functions]]

A function included in the GECK version 1.1.0.36.

Description

Adds Count items of object ObjectID to the calling container's inventory. It has two required parameters (the object to add and the quantity) and one optional parameter (whether to display a message on screen).

Syntax

[help]
ActorID|ContainerID.AddItem ObjectID:ref Count:int HideMessageFlag:int

Examples

buddyref.additem Stimpack 11

Adds 11 stimpacks to Buddy's inventory

player.additem SuperStimpak 10

Adds 10 super stimpacks to the player's inventory and the message displays like normal

player.additem SuperStimpak 10 1

Adds 10 super stimpacks to the player's inventory and no message is displayed

Notes

  • You can use a FormList as the item parameter - in this case, the function adds the count for each item in the list.

Bugs

  • Calling AddItem in an Effect Script will cause the target actor's weapon to toggle between being visible and usable and being invisible and unusable. The cause of this bug is unknown, but as a workaround, use something like this in the script of the item that is being added:
    ref rContainer
    Begin OnAdd
    	set rContainer to GetContainer
    	rContainer.AddItem Pencil01 1 1
    	rContainer.RemoveItem Pencil01 1 1
    End

See Also