WoW API: GetTradeSkillInvSlots

Revision as of 04:46, 15 August 2023 by Move page script (talk) (Move page script moved page API GetTradeSkillInvSlots to API GetTradeSkillInvSlots without leaving a redirect)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

WoW API < GetTradeSkillInvSlots

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()};