What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Character wont loot all healing gear.

cgw-1991

New Member
Joined
Jun 11, 2011
Messages
150
Reaction score
0
Ok i am currently leveling a holy pally using instance buddy. My only issue thus far with what it is doing is i dont know how to configure it to need cloth gear leather and so on since im only level 20 and good mail healing gear doesn't start poping up till late level 30s. Anyone have any idea how I can set it so that my character will roll on healer gear of all types and not just mail? The looting seems to be handled by auto equip. But their are no options that i have seen thus far to have it need on all types of items from cloth to mail.
 
Last edited:
Pretty sure you could just modify the .cs of auto equip to need if the stats are higher than **.
 
stop bumping your threads. Easy way to get your thread deleted
 
try to find the CS-File where it should be ... Autoequip2 is plugin.. so what u think, where could you find the file? ;)

check out these line(s) and try to figure out how to change it ;)

PHP:
                // Make sure we only roll need if the item is of the wanted armor class for this player (or if it's a cloak, trinket, ring or neck).
                bool needRollForArmor = rollItemInfo.ItemClass == WoWItemClass.Armor &&
                    (rollItemInfo.ArmorClass == _weightSet.GetWantedArmorClass() || miscArmorType.Contains(rollItemInfo.InventoryType));

the weightset class can't be changed by yourself, so you have to do a dirty hack for this, but don't forget ...
- if you are within a levelrange where the ArmorClass drops the right gear you should switch this line back to the original
- if you update your hb (if theres a new release) ... change will be undone (i think)
 
Last edited:
k im confused so i need to modify this text
bool needRollForArmor = rollItemInfo.ItemClass == WoWItemClass.Armor &&
(rollItemInfo.ArmorClass == _weightSet.GetWantedArmorClass() || miscArmorType.Contains(rollItemInfo.InventoryType));
to something else so that i can have it need on cloth and stuff?
 
Back
Top