1. ItemRack Addon

    I tried Legacywow version but it is not working.Anybody knows proper ItemRack version?

  2. 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.

  3. 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

  4. fix for hunter class API issue

    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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •