WoW:API UseInventoryItem: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
mNo edit summary
Line 7: Line 7:
:;slotID :The inventory slot ID
:;slotID :The inventory slot ID


:You can get the slot ID by using [[API GetInventorySlotInfo|GetInventorySlotInfo(slot)]]
:You can get the [[API TYPE InventorySlotID|slot ID]] by using [[API GetInventorySlotInfo|GetInventorySlotInfo(slot)]]


=== Example===
=== Example===

Revision as of 14:34, 5 October 2005

Use an item in a specific inventory slot.

Syntax

UseInventoryItem( slotID );

Arguments

slotID
The inventory slot ID
You can get the slot ID by using GetInventorySlotInfo(slot)

Example

/script UseInventoryItem( GetInventorySlotInfo("Trinket0Slot") );

After patch 1.6 you cant auto-use items anymore. Addons can no longer activate items without the press of a button. In order to use UseInventoryItem( GetInventorySlotInfo("Trinket0Slot") ) you will have to call it from a button, keypress or icon as you do with spells.