Not signed in (Sign In)
  1.  
    so im currently using the latest version of auctioneer and enchantrix. ive used auctioneer for awhile and it has scanned both alliance and horde for more than 100+ now. however i just started to use enchantrix lately for disenchanting purposes. anyway heres my problem:

    enchantrix shows the same disenchant value even if i change factions, also it doesnt seem to update the values listed (hsp,median,baseline) even if the current selling price of the shards change. aside from that, alliance and horde in my server doesnt have the same price on shards so i dont know if im actually losing or making profit with disenchanting.

    for level 51-55 green armor, it always shows an hsp of 2g 62s.

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

    It's supposed to take faction and median into account like you describe and I can't explain what could be causing the observed behaviour.

    Just to clarify, when you say "latest version", which version is that?
  3.  
    version 3.4.3 auctioneer/enchantrix

    using defaults setting for enchantrix while in auctioneer i show the opposing faction
  4.  
    I need to ponder on this a bit, very strange.

    Could you post some representative screenshots please? I need something to seed the thinking process.
  5.  
    If Enchantrix fails at getting a price from Auctioneer, it will use a built in price to make a guess at HSP and median. If HSP and median are always 95% and 98% of baseline price, this could be what's causing your problem.
  6.  
    so what would be the fix to this? anyway sorry for the late reply and here are the screenshots.



    [img]/bb/link.gif[/img][img]/bb/link.gif[/img]

    [img]http://img117.imageshack.us/img117/4567/wowscrnshot0528060421593eg.th.jpg[/img][img]/bb/link.gif[/img][img]/bb/link.gif[/img][img]/bb/link.gif[/img]

    [img]http://img99.imageshack.us/img99/5408/wowscrnshot0528060421365hr.th.jpg[/img][img]/bb/link.gif[/img][img]/bb/link.gif[/img][img]/bb/link.gif[/img]

    [img]http://img117.imageshack.us/img117/5337/wowscrnshot0528060421112va.th.jpg[/img][img]/bb/link.gif[/img][img]/bb/link.gif[/img][img]/bb/link.gif[/img]

    [img]http://img99.imageshack.us/img99/1548/wowscrnshot0528060420424fy.th.jpg[/img][img]/bb/link.gif[/img][img]/bb/link.gif[/img][img]/bb/link.gif[/img]

    [img]http://img117.imageshack.us/img117/1821/wowscrnshot0528060419456dt.th.jpg[/img][img]/bb/link.gif[/img][img]/bb/link.gif[/img][img]/bb/link.gif[/img]

    [img]http://img117.imageshack.us/img117/7623/wowscrnshot0528060419402te.th.jpg[/img][img]/bb/link.gif[/img][img]/bb/link.gif[/img][img]/bb/link.gif[/img]

    [img]http://img117.imageshack.us/img117/9544/wowscrnshot0528060419272kr.th.jpg[/img][img]/bb/link.gif[/img][img]/bb/link.gif[/img][img]/bb/link.gif[/img]

    [img]http://img117.imageshack.us/img117/1821/wowscrnshot0528060419456dt.th.jpg[/img][img]/bb/link.gif[/img][img]/bb/link.gif[/img][img]/bb/link.gif[/img]

    [img]http://img117.imageshack.us/img117/7623/wowscrnshot0528060419402te.th.jpg[/img][img]/bb/link.gif[/img][img]/bb/link.gif[/img][img]/bb/link.gif[/img]

    [img]http://img117.imageshack.us/img117/9544/wowscrnshot0528060419272kr.th.jpg[/img][img]/bb/link.gif[/img][img]/bb/link.gif[/img][img]/bb/link.gif[/img]
  7.  
    Due to a bug, Enchantrix does not recognise Auctioneer 3.4.[1-3] as a usable version and therefore fails to get price information.

    I'm committing a fix right now so this bug will be fixed in the next release. In the mean time, you can apply the following patch to fix the problem:
    [pre]
    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]
    Open Enchantrix.lua in a text editor and change the lines starting with '-' into the lines starting with '+'.

    Thanks for the report.
World of Warcraft™ and Blizzard Entertainment™ are trademarks or registered trademarks of Blizzard Entertainment, Inc. in the U.S. and/or other countries.