• World of Warcraft Addons
  • World of Warcraft
  • Average Rating:

  • Your Rating

  • Share
  • Report Abuse

XLootMaster

  Download the Curse Client

Project Updated:
Files Updated: Thu, Jun 18 2009
Supports Game Version: 3.1.0
Category: Boss Encounters
Tags:

[Edit Tags]

Project Manager: Xuerian
Additional Authors: Dridzt , Mikk
Current Version: 0.8-30100-1-release
License: All Rights Reserved
Avg Daily DL (last 30 days): 694
Downloads Total: 108,911
Favorites: 401
Comments: 18
  • About XLootMaster
  •  

Highly configurable master looter dropdown menu.

Requires XLoot.

  • Downloads (5)
  •  
File Name Release Type Game Version Downloads Date
Addon Curse.com Beta 2.3.3 0 9/29/2008
  File Name Release Type Game Version Downloads Date  
  XLootMaster 0.8-30100-1-release Release 3.1.0 17,946 6/18/2009
  XLootMaster 0.8-30100-1 Beta 3.1.0 3,503 4/16/2009
  XLootMaster 0.7-30000-1 Release 3.0.2 70,000 10/19/2008
  XLootMaster 0.7-30000 Release 3.0.2 10,354 10/17/2008
  XLootMaster-r80476 Beta 2.4.3 6,668 8/15/2008
  • 1 page(s)
Advertisement
  • Comments

Add Comment  

Add

You need to login or register to post.

Benefits of Registration

  • Interact with hundreds of thousands of other gamers on an open social network.
  • Post your stories, news, images, videos, and other content to share.
  • Create a network with your fellow gamers or join an existing one.
  • Gain reputation for everything you do.
  • I had master loot on when running an instance and i tried the 'master' features and i couldn't seem to get it to work properly. When i tried to look for the 'Attention: /roll 1000 if you want etc etc" feature there, all it shown was just its prefix. I couldn't click it to annouce it. Someone tell me how to make it so that i can make it so i can annouce that to the group.

    Reply Report Permalink
  • I would love a feature where I can link items to Raid Warning (or other channels) individually, similar to the current "link all" fuction. We link all at the start, and then each item one by one as people bid on it, and it'd be a nice shortcut.

    Reply Report Permalink
  • Mikk said 

    Yeah sorry this works. It's just that Dridzt pushed the 3.1 fixes as "Beta", so it still wouldn't work for people downloading "Release".

    Reply Report Permalink
  • CYPSYAN said 

    i dont know if this is because of the "nonopwarning" addon but i had this error in ony today

    Date: 2009-05-27 12:18:29
    ID: -1
    Error occured in: Global
    Count: 49
    Message: ..\AddOns\XLootMaster\XLootMaster.lua line 335:
    Usage: GetLootSlotInfo(slot)
    Debug:
    (tail call): ?
    ...dOns\Cartographer\libs\AceEvent-2.0\AceEvent-2.0.lua:299: TriggerEvent()
    ...dOns\Cartographer\libs\AceEvent-2.0\AceEvent-2.0.lua:910:
    ...dOns\Cartographer\libs\AceEvent-2.0\AceEvent-2.0.lua:903
    [C]: OldLootSlot()
    NoBoPWarning\NoBoPWarning.lua:187: LootSlot()
    NoBoPWarning\NoBoPWarning.lua:200: LootButton_OnClick()
    XLoot\XLoot.lua:338:
    XLoot\XLoot.lua:336
    (tail call): ?
    [string "*:OnClick"]:4:
    [string "*:OnClick"]:1

    Reply Report Permalink
  • VoxxMan said 

    Does this addon work again? It used to be invaluable back in the days but now i don't want to risk using it in a raid after looking at the comments.

    Reply Report Permalink
  • ltdeta said 

    how can i post loot into a channel with 1 item per line?

    Reply Report Permalink
  • Dwarlo said 

    can somone send me the updated .lua file that has Devilcat's code in it
    27.andy@gmail.com

    Reply Report Permalink
  • bwh said 

    delete everything in XLootMaster.lua and copy/paste from the following link
    http://pastebin.com/f4eafe8e9 save and launch the game.

    Reply Report Permalink
  • Kedgar said 

    Cant click on the bwh's link. --> Dead link.
    Anyone have any solution ?

    Reply Report Permalink
  • seaquake said 

    thanks

    Reply Report Permalink
  • Mithryx said 

    I cant get the Xloot Master part to appear, I just get a simple list of the 2 people in my group when using ML and I have rare set as minimum. Will this only work in raid, I thought it would work in group aswell as long as ML is set. I have updated to latest version, but still no go. Any tips?

    Reply Report Permalink
  • sjaecu said 

    I am having the same problem as Mithryx, but can add that it is not working in a raid either. I only get the small box that allows me to loot the item, with a drop down for each individual memeber in the raid's parties. I cannot get any option to call for rolls or to announce the loot to the raid. Please help.

    I have uninstalled all components of xLoot except for xLootMaster, which has been updated to current version.

    Reply Report Permalink
  • Mithryx said 

    Anyone else have this problem, or is it just the two of us? Perhaps we have some other addons that prevent this from working?

    Reply Report Permalink
  • acrolyt said 

    Yay, thank you!

    Reply Report Permalink
  • bwh said 

    no i had the same problem until I followed devilcat's way to fix it...
    you have to open xlootmaster.lua in addons\xlootmaster\ folder and edit the lines between line 40 until "function XLootMaster:RollHook()" . You should delete the lines inbetween or comment them out by adding 2 dash "--" in front of each line. Then paste devilcat's code below to the deleted/commmented out part. save and run the game.

    Reply Report Permalink
  • devilcat said 

    [code]
    function XLootMaster:OnEnable()
    XLoot:msg("Master: OnEnable()")
    -- self:Hook("LootFrame_OnEvent","OnEvent", true)
    self:RollHook()
    self:RegisterEvent("PARTY_MEMBERS_CHANGED");
    self:RegisterEvent("OPEN_MASTER_LOOT_LIST");
    self:RegisterEvent("UPDATE_MASTER_LOOT_LIST");
    end

    function XLootMaster:OnDisable()
    self:UnregisterEvent("PARTY_MEMBERS_CHANGED");
    self:UnregisterEvent("OPEN_MASTER_LOOT_LIST");
    self:UnregisterEvent("UPDATE_MASTER_LOOT_LIST");
    end

    function XLootMaster:OPEN_MASTER_LOOT_LIST()
    XLoot:msg("Master: OPEN_MASTER_LOOT_LIST()")
    return self:ShowMenu()
    end

    function XLootMaster:UPDATE_MASTER_LOOT_LIST()
    XLoot:msg("Master: UPDATE_MASTER_LOOT_LIST()")
    return self.dewdrop:Refresh(1)
    end


    [/code]

    Reply Report Permalink
  • msheahen said 

    Thanks, man! I'll give that a shot.

    Reply Report Permalink
  • devilcat said 

    All you have to do is add the appropriate event handler for OPEN_MASTER_LOOT_LIST and UPDATE_MASTER_LOOT_LIST and register/unregister both events, instead of hooking LootFrame_OnEvent.

    Reply Report Permalink
  • msheahen said 

    Which is done... how?

    Reply Report Permalink
  • ovario said 

    Broken in 3.1

    Reply Report Permalink
  • Similar Addons
  •  

Average downloads per day

  1. 19,298 Deadly Boss Mods Boss Encounters, and Combat
  2. 8,269 BigWigs Bossmods Combat, and Boss Encounters
  3. 3,365 Omen Threat Meter Boss Encounters, and Combat
  4. 1,866 Skada Damage Meter Combat, Boss Encounters, and...
  5. 1,565 EPGPLootmaster Guild, Bags & Inventory, Chat...