This site works best with JavaScript enabled. Please enable JavaScript to get the best experience from this site.
Again got bored of seeing old info, so decided to add new. Found an issue, that's why suggest one of these three changes.
The first one is in AtlasLoot_Collections\data.lua lines 2020-2027 change into
{ --ArmorWeaponEnhancements name = AL["Armor Enhancements"].." / "..AL["Weapon Enhancements"], [NORMAL_DIFF] = { --{ 1, 122338, [PRICE_EXTRA_ITTYPE] = "money:10000000-darkmoon:100-championsseal:55-markofhonor:12-ancestrycoin:40-timewarped:750-burningblossom:350-trickytreat:250" }, -- Ancient Heirloom Armor Casing; full info but currently gives error, probably because of exceeding the width { 1, 122338, [PRICE_EXTRA_ITTYPE] = "money:10000000-darkmoon:100-championsseal:55-markofhonor:12-ancestrycoin:40" }, -- Ancient Heirloom Armor Casing { 2, 122340, [PRICE_EXTRA_ITTYPE] = "money:20000000-ancestrycoin:75-burningblossom:600-trickytreat:450-timewarped:1000" }, -- Timeworn Heirloom Armor Casing { 3, 151614, [PRICE_EXTRA_ITTYPE] = "money:50000000-burningblossom:600-trickytreat:450-timewarped:1000" }, -- Weathered Heirloom Armor Casing --{ 16, 122339, [PRICE_EXTRA_ITTYPE] = "money:12000000-darkmoon:120-championsseal:65-markofhonor:14-lovetoken:200-brewfest:300-timewarped:900" }, -- Ancient Heirloom Scabbard; full info but currently gives error, probably because of exceeding the width { 16, 122339, [PRICE_EXTRA_ITTYPE] = "money:12000000-darkmoon:120-championsseal:65-markofhonor:14-lovetoken:200" }, -- Ancient Heirloom Scabbard { 17, 122341, [PRICE_EXTRA_ITTYPE] = "money:50000000-lovetoken:450-brewfest:500-timewarped:1200" }, -- Timeworn Heirloom Scabbard { 18, 151615, [PRICE_EXTRA_ITTYPE] = "money:75000000-lovetoken:450-brewfest:500-timewarped:1200" }, -- Weathered Heirloom Scabbard }, },
Items which have too large currency list are commented out, and in the next line is currency info that didn't give an error.
I personally prefer the second change because it allows seeing all currencies on mouse-over, but is more dangerous because have a low understanding of abstractions which are in the code. So, there is the second choice (which I'll be using).
Again, AtlasLoot_Collections\data.lua lines 2020-2027, but change them into
{ --ArmorWeaponEnhancements name = AL["Armor Enhancements"].." / "..AL["Weapon Enhancements"], [NORMAL_DIFF] = { { 1, 122338, [PRICE_EXTRA_ITTYPE] = "money:10000000-darkmoon:100-championsseal:55-markofhonor:12-ancestrycoin:40-timewarped:750-burningblossom:350-trickytreat:250" }, -- Ancient Heirloom Armor Casing; full info but currently gives error, probably because of exceeding the width { 2, 122340, [PRICE_EXTRA_ITTYPE] = "money:20000000-ancestrycoin:75-burningblossom:600-trickytreat:450-timewarped:1000" }, -- Timeworn Heirloom Armor Casing { 3, 151614, [PRICE_EXTRA_ITTYPE] = "money:50000000-burningblossom:600-trickytreat:450-timewarped:1000" }, -- Weathered Heirloom Armor Casing { 16, 122339, [PRICE_EXTRA_ITTYPE] = "money:12000000-darkmoon:120-championsseal:65-markofhonor:14-lovetoken:200-brewfest:300-timewarped:900" }, -- Ancient Heirloom Scabbard; full info but currently gives error, probably because of exceeding the width { 17, 122341, [PRICE_EXTRA_ITTYPE] = "money:50000000-lovetoken:450-brewfest:500-timewarped:1200" }, -- Timeworn Heirloom Scabbard { 18, 151615, [PRICE_EXTRA_ITTYPE] = "money:75000000-lovetoken:450-brewfest:500-timewarped:1200" }, -- Weathered Heirloom Scabbard }, },
and in AtlasLoot\Button\Button.lua comment out line 670
--iconFrame:Clear()
The third one option is splitting the info into two parts. Again, AtlasLoot_Collections\data.lua lines 2020-2027, but change them into
{ --ArmorWeaponEnhancements name = AL["Armor Enhancements"].." / "..AL["Weapon Enhancements"], [NORMAL_DIFF] = { { 1, 122338, [PRICE_EXTRA_ITTYPE] = "money:10000000-darkmoon:100-championsseal:55-markofhonor:12-ancestrycoin:40" }, -- Ancient Heirloom Armor Casing; full info but currently gives error, probably because of exceeding the width { 2, 122338, [PRICE_EXTRA_ITTYPE] = "timewarped:750-burningblossom:350-trickytreat:250" }, { 3, 122340, [PRICE_EXTRA_ITTYPE] = "money:20000000-ancestrycoin:75-burningblossom:600-trickytreat:450-timewarped:1000" }, -- Timeworn Heirloom Armor Casing { 4, 151614, [PRICE_EXTRA_ITTYPE] = "money:50000000-burningblossom:600-trickytreat:450-timewarped:1000" }, -- Weathered Heirloom Armor Casing { 16, 122339, [PRICE_EXTRA_ITTYPE] = "money:12000000-darkmoon:120-championsseal:65-markofhonor:14-lovetoken:200" }, -- Ancient Heirloom Scabbard; full info but currently gives error, probably because of exceeding the width { 17, 122339, [PRICE_EXTRA_ITTYPE] = "brewfest:300-timewarped:900" }, -- Ancient Heirloom Scabbard; full info but currently gives error, probably because of exceeding the width { 18, 122341, [PRICE_EXTRA_ITTYPE] = "money:50000000-lovetoken:450-brewfest:500-timewarped:1200" }, -- Timeworn Heirloom Scabbard { 19, 151615, [PRICE_EXTRA_ITTYPE] = "money:75000000-lovetoken:450-brewfest:500-timewarped:1200" }, -- Weathered Heirloom Scabbard }, },
To post a comment, please login or register a new account.