WoW:API GetTradeSkillInvSlots: Difference between revisions
Jump to navigation
Jump to search
GetTradeSkillSelectionIndex -Documentation by Xharze-
No edit summary |
mNo edit summary |
||
Line 22: | Line 22: | ||
Prints the available inventory slot types to the chatwindow | Prints the available inventory slot types to the chatwindow | ||
ChatFrame1:AddMessage(GetTradeSkillInvSlots()); | ChatFrame1:AddMessage(GetTradeSkillInvSlots()); | ||
---- | |||
;''Example'' | |||
Gets available inventory slots as a table of strings | |||
local t = {GetTradeSkillInvSlots()}; | |||
---- | ---- | ||
{{WoW API}} | {{WoW API}} |
Revision as of 01:50, 16 February 2006
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()};