View Single Post
06/01/18, 05:04 AM   #2
Scootworks
 
Scootworks's Avatar
AddOn Author - Click to view addons
Join Date: Nov 2014
Posts: 312
hi Woeler

maybe something like this:
lua Code:
  1. for i = 1, GetHighestItemStyleId() do
  2.     local name = GetItemStyleName(i)
  3.     if name ~= "" then
  4.         df("[%d] %s", i, name)
  5.     end
  6. end

Last edited by Scootworks : 06/01/18 at 05:45 AM.
  Reply With Quote