Thread: SyncUI help
View Single Post
08-16-17, 10:38 AM   #5
cbdgv
A Deviate Faerie Dragon
 
cbdgv's Avatar
Join Date: Jan 2008
Posts: 12
Originally Posted by syncrow View Post
You have to change the isEquip function at line 190 like this:

Lua Code:
  1. local function isEquip(itemID)
  2.     local isEquip = select(9, GetItemInfo(itemID))
  3.     local isRelic = select(7, GetItemInfo(itemID)) == "Artifact Relic" and true or false;
  4.    
  5.     if isRelic or (isEquip ~= "" and isEquip ~= "INVTYPE_BAG") then
  6.         return true
  7.     end
  8.    
  9.     return
  10. end

Note: GetItemInfo returns the subclass string localized. You might change "Artifact Relic" might be changed for your client language

hi,Modified no change
Attached Thumbnails
Click image for larger version

Name:	QQ??20170817003527.png
Views:	226
Size:	47.6 KB
ID:	8976  
  Reply With Quote