Er, for my one addon, I added a talent tree that let you have more tool slots. So I made the tool slot have 4 slots on the equip doll (just like rings have 2):
Code:
local doll = ActorInventory.equipdolls.default.list.TOOL
table.insert(doll, {weight = 16, x = 336, y = 408,})
table.insert(doll, {weight = 17, x = 336, y = 336,})
table.insert(doll, {weight = 18, x = 336, y = 264,})
Then, I have the talent tree alter how many slots you can have based on points invested, etc.:
Code:
self.inven[self.INVEN_TOOL].max = num_slots
Without the change, the equip doll will always show all of the defined slots, no matter what that slot's
max value is.
_________________
Addons:
Arcane Blade Tweaks,
Fallen Race,
Monk Class,
Weapons PackCurrently working on
Elementals. It's a big project, so any help would be appreciated.
