Thread Tools Display Modes
11/02/14, 04:13 PM   #1
circonian
AddOn Author - Click to view addons
Join Date: May 2014
Posts: 613
Style Materials

Is there a Style Material for every ITEMSTYLE? I saw "about" 24 non-deprecated ITEMSTYLE_'s but I only counted about (i forget how many) 14 useable style materials at the different crafting stations I visited.

If not does someone have a list of which ItemStyles correspond to which Style Materials, I can't find one.
  Reply With Quote
11/02/14, 04:43 PM   #2
Garkin
 
Garkin's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 832
I believe that there are style materials only for craftable styles. But if you want, you can check it using the simple script:

Lua Code:
  1. for itemId = 1, 70000 do --70000 should be enough
  2.     local itemLink = "|H1:item:" .. itemId .. ":30:1:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0|h|h"
  3.     if GetItemLinkItemType(itemLink) == ITEMTYPE_STYLE_MATERIAL then
  4.         d(itemLink)
  5.     end
  6. end
  Reply With Quote
11/02/14, 05:14 PM   #3
circonian
AddOn Author - Click to view addons
Join Date: May 2014
Posts: 613
Nice that will work. Thanks.
If anyone else is interested it looks like those 14 at the crafting stations are it:

  Reply With Quote

ESOUI » Developer Discussions » General Authoring Discussion » Style Materials


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off