WoW:API GetTradeSkillInvSlots: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
mNo edit summary
(upgraded deprecated template)
Line 1: Line 1:
{{wowapi}}
  <center>'''GetTradeSkillSelectionIndex''' ''-Documentation by [[User:Xharze|Xharze]]-''</center>
  <center>'''GetTradeSkillSelectionIndex''' ''-Documentation by [[User:Xharze|Xharze]]-''</center>


Line 28: Line 29:
Gets available inventory slots as a table of strings
Gets available inventory slots as a table of strings
  local t = {GetTradeSkillInvSlots()};
  local t = {GetTradeSkillInvSlots()};
----
{{WoW API}}

Revision as of 17:28, 6 January 2007

WoW API < GetTradeSkillInvSlots

GetTradeSkillSelectionIndex -Documentation by Xharze-

Returns a list of the available inventory slot types

GetTradeSkillInvSlots();

Arguments
none

Returns
ListString invSlots
invSlots
The available inventory slot types

Example

Prints the available inventory slot types to the chatwindow

ChatFrame1:AddMessage(GetTradeSkillInvSlots());

Example

Gets available inventory slots as a table of strings

local t = {GetTradeSkillInvSlots()};