I tried Legacywow version but it is not working.Anybody knows proper ItemRack version?
'); document.write(''); var yuipath = 'clientscript/yui'; var yuicombopath = ''; var remoteyui = false; } else // Load Rest of YUI remotely (where possible) { var yuipath = 'https://ajax.googleapis.com/ajax/libs/yui/2.9.0/build'; var yuicombopath = ''; var remoteyui = true; if (!yuicombopath) { document.write(''); } } var SESSIONURL = ""; var SECURITYTOKEN = "guest"; var IMGDIR_MISC = "warmane/misc"; var IMGDIR_BUTTON = "warmane/buttons"; var vb_disable_ajax = parseInt("0", 10); var SIMPLEVERSION = "422"; var BBURL = "https://forum.warmane.com"; var LOGGEDIN = 0 > 0 ? true : false; var THIS_SCRIPT = "showthread"; var RELPATH = "showthread.php?t=472202"; var PATHS = { forum : "", cms : "", blog : "" }; var AJAXBASEURL = "https://forum.warmane.com/"; var CoTTooltips = { rename: true, icons: false, iconsize: 15, qualitycolor: true, overridecolor: { spells: '#839309', items: '', npcs: '#fff', objects: '#fff', quests: '#ffb100', achievements: '#fff' } }; // -->
I tried Legacywow version but it is not working.Anybody knows proper ItemRack version?
Hey did you check ?: https://www.reddit.com/r/warmane/com...35a/?rdt=33153
I used (in classic and now testing tbc) the: https://legacy-wow.com/tbc-addons/item-rack/
Is was kind of broken in classic tbh but it would give you a couple extra squares to put items like trinkets on the UI in game
I think but I have no evidence that it made me lose a trinket or two in my Orc Horde warrior the chicken trinket from eng, and maybe some other that you loot in Strat.
One of two hunter "suddenly" stopped swapping trinkets as soon as I was higher lvl and that behavior was the same today that I tested TBC with the difference than this time both my hunters stopped swapping and equipping set. I found a work around for the hunters.
It turns out that the addon employs API specific for retail and some functions are just not supported by WARMANE private server's API.
you need to go into the addon ItemRack.lua open it in a text editor like note++ and then ctrl+f to search for the word: GetPlayerBuffName
I found only once instance of the word, once you find it you need to modify the function to fix the issue the working function has to be like this:
--[[ Combat queue ]]
function ItemRack.IsPlayerReallyDead()
local dead = UnitIsDeadOrGhost("player")
if select(2,UnitClass("player"))=="HUNTER" then
for i=1,24 do
if select(3,UnitBuff("player",i))=="Interface\Icons\A bility_Rogue_FeignDeath" then
return false -- Changed to false, as Feign Death means NOT dead.
end
end
end
return dead
end
after fixing the function just SAVE changes in notepad++
Code:--[[ Combat queue ]] function ItemRack.IsPlayerReallyDead() local dead = UnitIsDeadOrGhost("player") if select(2,UnitClass("player"))=="HUNTER" then for i=1,24 do if select(3,UnitBuff("player",i))=="InterfaceIconsAbility_Rogue_FeignDeath" then return false -- Changed to false, as Feign Death means NOT dead. end end end return dead end