Avian Gamers Network

Forum
It is currently Tue Jun 17, 2025 1:36 pm

All times are UTC - 5 hours [ DST ]




Post new topic Reply to topic  [ 11 posts ] 
Author Message
 Post subject: Patch Problems
PostPosted: Wed Oct 12, 2005 11:20 am 
Offline

Joined: Fri Jul 09, 2004 2:10 pm
Posts: 488
Location: Wyoming
first, here is one thread of many that pertain to this issue.

http://forums.worldofwarcraft.com/threa ... post517595

anyone else ever experience this?

on jenns pc, every patch day(except for hot fixes) something like this happens. last time she had a corrupted texture.mpq file. the time before, it was the patch.mpq file. i have tried DL the patch from blizz, blizz's mirrors, fly's mirror...and its all the same.

the only way i can find to fix the problem, is to either reinstall the entire game, or copy my WoW folder over to her pc.

so, anyone else ever have this problem? or does anyone know what may be causing it?


edit: jenn=alat :oops:

_________________
2 Locks, 2 Pally's, 1 Priest, 1 Warrior, 1 Hunter and 1 Mage walk into a bar...


Top
 Profile  
 
 Post subject:
PostPosted: Wed Oct 12, 2005 3:22 pm 
Offline
Site Admin
User avatar

Joined: Mon Oct 29, 2001 9:01 pm
Posts: 2417
Location: Baton Rouge, LA / Kuwait / Kandahar
Never had that problem, sounds like a pain in the ass


Top
 Profile  
 
 Post subject:
PostPosted: Wed Oct 12, 2005 9:35 pm 
Offline
Spammer
User avatar

Joined: Fri Jul 05, 2002 9:13 pm
Posts: 2325
Location: Canton, Ohio
never had that problem either


Top
 Profile  
 
 Post subject:
PostPosted: Wed Oct 12, 2005 11:16 pm 
Offline

Joined: Thu Apr 14, 2005 1:04 pm
Posts: 253
Location: Richmond, Virginia
Haven't see the A's in game lately.. you still playing?


Top
 Profile  
 
 Post subject:
PostPosted: Thu Oct 13, 2005 4:03 am 
Offline
Spammer
User avatar

Joined: Tue Jun 24, 2003 6:45 am
Posts: 2248
Location: Paris, France
No problem here

_________________
Flyoc,
Farm with attitude.


Top
 Profile  
 
 Post subject:
PostPosted: Thu Oct 13, 2005 10:04 am 
Offline

Joined: Fri Jul 09, 2004 2:10 pm
Posts: 488
Location: Wyoming
Tomatoh wrote:
Haven't see the A's in game lately.. you still playing?



a little bit here and there. needed a break. :oops:

_________________
2 Locks, 2 Pally's, 1 Priest, 1 Warrior, 1 Hunter and 1 Mage walk into a bar...


Top
 Profile  
 
 Post subject:
PostPosted: Thu Oct 13, 2005 11:29 am 
Offline
Spammer
User avatar

Joined: Mon Aug 06, 2001 8:01 pm
Posts: 4046
Well get back in here! I need some new static group members hehe

_________________
"I built me a bomb and dropped it on every MFer who got in my way!"


Top
 Profile  
 
PostPosted: Thu Oct 13, 2005 5:47 pm 
Offline

Joined: Sat Sep 17, 2005 7:03 pm
Posts: 10
Location: NC
Not sure if anyone experienced Auctioneer problems after the 1.8 patch.
It shows up when you first start with an error message about setting a nil value.
Here is a fix I came up with:
1. Edit the Auctioneer.lua file

2. Look for the chunk of code (text) that starts with:
"function Auctioneer_ConfigureAH()"

and ends with:

"end"

3. Replace it with:

function Auctioneer_ConfigureAH()
if (AuctionsPriceText ~= nil) then
AuctionsPriceText:ClearAllPoints();
AuctionsPriceText:SetPoint("TOPLEFT", "AuctionsItemText", "TOPLEFT", 0, -56);
end
if (AuctionsBuyoutText ~= nil) then
AuctionsBuyoutText:ClearAllPoints();
AuctionsBuyoutText:SetPoint("TOPLEFT", "AuctionsPriceText", "TOPLEFT", 0, -36);
end
if (AuctionsBuyoutErrorText ~= nil) then
AuctionsBuyoutErrorText:ClearAllPoints();
AuctionsBuyoutErrorText:SetPoint("TOPLEFT", "AuctionsBuyoutText", "TOPLEFT", 0, -32);
end
if (AuctionsDurationText ~= nil) then
AuctionsDurationText:ClearAllPoints();
AuctionsDurationText:SetPoint("TOPLEFT", "AuctionsBuyoutErrorText", "TOPLEFT", 0, -10);
end
if (AuctionsDepositText ~= nil) then
AuctionsDepositText:ClearAllPoints();
AuctionsDepositText:SetPoint("TOPLEFT", "AuctionsDurationText", "TOPLEFT", 0, -34);
end
if (AuctionInfo ~= nil) then
AuctionInfo:ClearAllPoints();
AuctionInfo:SetPoint("TOPLEFT", "AuctionsDepositText", "TOPLEFT", -4, -36);
end

if (AuctionsShortAuctionButtonText ~= nil) then
AuctionsShortAuctionButtonText:SetText("2");
end
if (AuctionsMediumAuctionButtonText ~= nil) then
AuctionsMediumAuctionButtonText:SetText("8");
AuctionsMediumAuctionButton:ClearAllPoints();
AuctionsMediumAuctionButton:SetPoint("BOTTOMLEFT", "AuctionsShortAuctionButton", "BOTTOMRIGHT", 20,0);
end
if (AuctionsLongAuctionButtonText ~= nil) then
AuctionsLongAuctionButtonText:SetText("24 "..HOURS);
AuctionsLongAuctionButton:ClearAllPoints();
AuctionsLongAuctionButton:SetPoint("BOTTOMLEFT", "AuctionsMediumAuctionButton", "BOTTOMRIGHT", 20,0);
end

-- set UI-texts
BrowseScanButton:SetText(AUCT_TEXT_SCAN);
end


4. Save and re-login into WOW.


Top
 Profile  
 
PostPosted: Thu Oct 13, 2005 6:03 pm 
Offline

Joined: Sat Sep 17, 2005 7:03 pm
Posts: 10
Location: NC
Oops let me try a little formatting :)

And BTW this does not restore the "Scan" button. May have to wait on Auctioneer authors to come up with a fix for that, unless...

3. Replace it with:
Code:
    function Auctioneer_ConfigureAH()
        if (AuctionsPriceText ~= nil) then
            AuctionsPriceText:ClearAllPoints();
            AuctionsPriceText:SetPoint("TOPLEFT", "AuctionsItemText", "TOPLEFT", 0, -56);
        end
        if (AuctionsBuyoutText ~= nil) then
            AuctionsBuyoutText:ClearAllPoints();
            AuctionsBuyoutText:SetPoint("TOPLEFT", "AuctionsPriceText", "TOPLEFT", 0, -36);
        end
        if (AuctionsBuyoutErrorText ~= nil) then
            AuctionsBuyoutErrorText:ClearAllPoints();
            AuctionsBuyoutErrorText:SetPoint("TOPLEFT", "AuctionsBuyoutText", "TOPLEFT", 0, -32);
        end
        if (AuctionsDurationText ~= nil) then
            AuctionsDurationText:ClearAllPoints();
            AuctionsDurationText:SetPoint("TOPLEFT", "AuctionsBuyoutErrorText", "TOPLEFT", 0, -10);
        end
        if (AuctionsDepositText ~= nil) then
            AuctionsDepositText:ClearAllPoints();
            AuctionsDepositText:SetPoint("TOPLEFT", "AuctionsDurationText", "TOPLEFT", 0, -34);
        end
        if (AuctionInfo ~= nil) then
            AuctionInfo:ClearAllPoints();
            AuctionInfo:SetPoint("TOPLEFT", "AuctionsDepositText", "TOPLEFT", -4, -36);
        end

        if (AuctionsShortAuctionButtonText ~= nil) then
            AuctionsShortAuctionButtonText:SetText("2");
        end
        if (AuctionsMediumAuctionButtonText ~= nil) then
            AuctionsMediumAuctionButtonText:SetText("8");
            AuctionsMediumAuctionButton:ClearAllPoints();
            AuctionsMediumAuctionButton:SetPoint("BOTTOMLEFT", "AuctionsShortAuctionButton", "BOTTOMRIGHT", 20,0);
        end
        if (AuctionsLongAuctionButtonText ~= nil) then
            AuctionsLongAuctionButtonText:SetText("24 "..HOURS);
            AuctionsLongAuctionButton:ClearAllPoints();
            AuctionsLongAuctionButton:SetPoint("BOTTOMLEFT", "AuctionsMediumAuctionButton", "BOTTOMRIGHT", 20,0);
        end

        -- set UI-texts
        BrowseScanButton:SetText(AUCT_TEXT_SCAN);
    end


Top
 Profile  
 
 Post subject:
PostPosted: Thu Oct 13, 2005 9:57 pm 
Offline
Spammer
User avatar

Joined: Tue Jun 25, 2002 11:23 am
Posts: 5587
Nice going, Chris.

_________________
Liro
"The english language is not a wedding gown, it doesn't get better the more lace you add. It is instead a thong. Less is more." From /.
I need to remind myself of this regularly.


Top
 Profile  
 
 Post subject:
PostPosted: Thu Oct 13, 2005 11:35 pm 
Offline
Site Admin
User avatar

Joined: Mon Oct 29, 2001 9:01 pm
Posts: 2417
Location: Baton Rouge, LA / Kuwait / Kandahar
Thanks for the auctioneer help... I have been so busy lately; I haven’t had a chance to install the patch. I use auctioneer, and I appreciate the fix. When I get a chance to play I don’t want to spend all my time researching fixes. Your code will come in very handy!


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 11 posts ] 

All times are UTC - 5 hours [ DST ]


Who is online

Users browsing this forum: No registered users and 0 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
Powered by phpBB® Forum Software © phpBB Group