Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.
Posted by: dinesh on Aug 8 2006, 08:42 AM
in order to unload any addon (including auctioneer), you need to set it to not load automatically on startup, then reload the UI. Note that some add-ons do not support on demand loading, so you can only disable them from the addons button on the character selection screen. Luckily, auctioneer does support On Demand loading.
in this case, you should:
1 - If you use Khaos, change the load characteristics for Auctioneer there, to load never, or at the auction house only. Not always.
2 - Otherwise, you will need to change this manually. Unfortunately, i cannot remember the exact command to do this. "/auc load never" might work. the exactly command should be noted in the in-game help.
3 - do a "/console reloadui"
Auctioneer will then remain unloaded until you load in manually, or visit the AH, depending on the setting you chose.
Posted by: dinesh on Aug 8 2006, 01:34 PM
I really don't know what you're asking for now. To see auctioneer prices in your tooltip, auctioneer has to be loaded.
There is no way to automate the unloading of any addon - you need to disable the addon, then manually reload your UI.
So to unload auctioneer in specific areas (BG's, other crowded zones), you will need to tell auctioneer not to load automatically, then reload your UI.
when you want to reload auctioneer, just type "/auc load" (I think). This should give you what you want, but in my opinion it's going to be way too much effort.
## Interface: 11100
## Title: Auctioneer_Hider
## Notes: Loads/Unloads Auctioneer
## Dependencies: Stubby
## SavedVariables: AUCTIONEER_LOADED
Auctioneer_Hider.xmlfunction Auctioneer_Hider_OnLoad()
Stubby.SetConfig("Auctioneer", "LoadType", "always")
LoadAddOn("Auctioneer");
AUCTIONEER_LOADED = true;
end;
function Auctioneer_Hider_Hide()
Stubby.SetConfig("Auctioneer", "LoadType", "never")
LoadAddOn("Auctioneer");
end;/script Auctioneer_Hider_Hide()<Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/ C:ProjectsWoWBinInterfaceFrameXMLUI.xsd">
<script file="Auctioneer_Hider.lua"/>
<Frame name="Auctioneer_Hider">
<scripts>
<OnLoad>
Auctioneer_Hider_OnLoad();
</OnLoad>
</Scripts>
</Frame>
</Ui>Quote:
i do not believe that Auctioneer_Hider_Hide will actually unload auctioneer as written, because the "never" command followed by another auctioneer load won't actually cause it to unload, it will just change the load setting to never, and do nothing (since loading auctioneer when it's already loaded does nothing, to the best of my knowledge).
1 to 11 of 11