Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.
Posted by: icynrvna on May 25 2006, 08:05 PM
is there a way for enchantrix to calculate its disenchant value to the current median price of the shards and ofcourse to distinguish opposing factions.
Index: Enchantrix.lua
===================================================================
--- Enchantrix.lua (revision 875)
+++ Enchantrix.lua (working copy)
@@ -1663,7 +1663,7 @@
elseif (major == 3 and (minor > 0 and minor <= 3) and (rev > 11 and rev < 675)) then
-- 3.1.11 < ver < 3.3.675
hsp = Auctioneer_GetHSP(itemKey, Auctioneer_GetAuctionKey());
- elseif (major >= 3 and minor >= 3 and (rev >= 675 or rev == 0)) then
+ elseif (major >= 3 and minor >= 3) then
-- 3.3.675 <= ver
hsp = Auctioneer.Statistic.GetHSP(itemKey, Auctioneer.Util.GetAuctionKey());
end
@@ -1678,7 +1678,7 @@
if ((not median or median < 1) and (major == 3 and (minor > 0 and minor <= 3) and (rev > 11 and rev < 675))) then
-- 3.1.11 < ver < 3.3.675
median = Auctioneer_GetUsableMedian(itemKey);
- elseif ((not median or median < 1) and (major >= 3 and minor >= 3 and (rev >= 675 or rev == 0))) then
+ elseif ((not median or median < 1) and (major >= 3 and minor >= 3)) then
-- 3.3.675 <= ver
median = Auctioneer.Statistic.GetUsableMedian(itemKey, Auctioneer.Util.GetAuctionKey());
end
[/pre]1 to 7 of 7