Hello, I've been enjoying your addon, but lately it's goy an annoying tendency of posting "XLoot: Could not get item name for loot slot 1, it may have already been looted. You can turn this message off in /xloot" in the chat log on almost everything I'm looting. Except I can't find an option to disable this message anywhere. Could you point me in the right direction?
Hello, I've been enjoying your addon, but lately it's goy an annoying tendency of posting "XLoot: Could not get item name for loot slot 1, it may have already been looted. You can turn this message off in /xloot" in the chat log on almost everything I'm looting. Except I can't find an option to disable this message anywhere. Could you point me in the right direction?
How do I blacklist an item so I do not loot it but I am able to loot everything else until I remove the item from the blacklist? And if this feature is not available would it be possible to offer an update with this option in it or something very similar?
Greetings, today i stumbled upon the issue where i would not receive any loot from fishing. I disabled the addon and it was fixed. I assume it hapepened after the 7.3, just trying to report the bug to you, thanks for a great addon.
Greetings, today i stumbled upon the issue where i would not receive any loot from fishing. I disabled the addon and it was fixed. I assume it hapepened after the 7.3, just trying to report the bug to you, thanks for a great addon.
I'm still using the mop-3-release r382 version because I utterly despise the versions beyond this, for reasons I can't remember - I just remember I hate the new version.
Whenever I am in an instance, I get a message that says "You aren't in a party" when I loot something. It appears that the offending line of code is:
if GetRealNumRaidMembers() > 0 or GetRealNumPartyMembers() > 0 then SendAddonMessage("LOOT_OPENED", "", "RAID") end
from the three AceEvent-2.0.lua files on line 987.
How do I fix this behaviour without updating the addon? I am more than happy to keep using the version that I have as it is still completely functional.
Your major hurdles are that Ace2 is worse than dead and has been so for years, and that the Blizzard APIs that are called do not exist anymore. You may not like the new version, but modifying your old Mists version to be current is an enormous task. It is one thing to replace all GetNumRaidMembers or GetNumPartyMembers with current APIs and entirely a different animal to patch the whole entirety of Ace2 to make it work.
That just is not possible with a few lines of code.
You will have to update to the latest XLoot regardless of preference. What you ask just cannot be done otherwise.
I'm still using the mop-3-release r382 version because I utterly despise the versions beyond this, for reasons I can't remember - I just remember I hate the new version.
Whenever I am in an instance, I get a message that says "You aren't in a party" when I loot something. It appears that the offending line of code is:
if GetRealNumRaidMembers() > 0 or GetRealNumPartyMembers() > 0 then SendAddonMessage("LOOT_OPENED", "", "RAID") end
from the three AceEvent-2.0.lua files on line 987.
How do I fix this behaviour without updating the addon? I am more than happy to keep using the version that I have as it is still completely functional.
You can check out the newer party functions on wowpedia or save a local copy of the latest version of xloot to see how it checks for grouped status in Frame.
I'd point out though, by definition that version is no longer completely functional if it doesn't work.
My suggestion it to just try using the modern version. The skin looks slightly different, but between the default and legacy skins you can get quite close to the MoP version. If you have specific requests you're welcome to supply them, but of course there's no guarantees as I no longer play the game.
Hello, I really like your addon but the only thing i am missing is on xloot monitor frames, i want to see the ilvl of the loot directly on my screen without having to mouseover to each item. I believe it is possible to get that info with current api cuz there are other addons acquiring that info. I tried to modify it myself but not so great with lua :) Thank you in advance
I have the group rolls in the top right of my screen. The items go off the screen. Can we get an option to change the direction the buttons are formed in addition to up and down?
I have the group rolls in the top right of my screen. The items go off the screen. Can we get an option to change the direction the buttons are formed in addition to up and down?
This is a longstanding request that is near the top of my list if I start working on it again.
Hi, i am using Xloot addon only for Loot Monitor, it's easy check who get nice items (nice job and ty for this!). Can u add item level for this feature?
Hi, I just found this addon and it for the most part solves what I've been looking for some time. I have one question and/or request depending on the answer.
Is there a way to keep the Loot Monitor items open for longer than 30 seconds? Or better yet, a way to keep them on screen until I chose to dismiss them? This is more for that running alts through LFR and seeing what drops other people get that they might not need.
Hi, I just found this addon and it for the most part solves what I've been looking for some time. I have one question and/or request depending on the answer.
Is there a way to keep the Loot Monitor items open for longer than 30 seconds? Or better yet, a way to keep them on screen until I chose to dismiss them? This is more for that running alts through LFR and seeing what drops other people get that they might not need.
I haven't built any such functionality into them, no.
You could manually edit the fade_own and fade_other values in the XLoot SavedVariables file to something higher than 30, that's about the closest you could get without any changes I think.
Rollback Post to RevisionRollBack
To post a comment, please login or register a new account.
Quick Question, This addon used to auto roll on greens and such was that functionality removed?
Hello, I've been enjoying your addon, but lately it's goy an annoying tendency of posting "XLoot: Could not get item name for loot slot 1, it may have already been looted. You can turn this message off in /xloot" in the chat log on almost everything I'm looting. Except I can't find an option to disable this message anywhere. Could you point me in the right direction?
Can't believe I missed that...I've combed through those options so many times! Thanks for the prompt reply.
Hi! I was wondering why the Loot Monitor Toasts don't have an opacity feature?
Is there a way i can make it more opaque just like the frames? With the Loot Monitor its more of a solid black background.
Ty
How do I blacklist an item so I do not loot it but I am able to loot everything else until I remove the item from the blacklist? And if this feature is not available would it be possible to offer an update with this option in it or something very similar?
Greetings, today i stumbled upon the issue where i would not receive any loot from fishing. I disabled the addon and it was fixed. I assume it hapepened after the 7.3, just trying to report the bug to you, thanks for a great addon.
Here is the LUA error due to changes with Playsound :
Adding -- at the start of the faulty line temporarly solves the issue.
Pushed 7.3-1, which I forgot to do.
Hi.
I'm still using the mop-3-release r382 version because I utterly despise the versions beyond this, for reasons I can't remember - I just remember I hate the new version.
Whenever I am in an instance, I get a message that says "You aren't in a party" when I loot something. It appears that the offending line of code is:
if GetRealNumRaidMembers() > 0 or GetRealNumPartyMembers() > 0 then SendAddonMessage("LOOT_OPENED", "", "RAID") end
from the three AceEvent-2.0.lua files on line 987.
How do I fix this behaviour without updating the addon? I am more than happy to keep using the version that I have as it is still completely functional.
Your major hurdles are that Ace2 is worse than dead and has been so for years, and that the Blizzard APIs that are called do not exist anymore. You may not like the new version, but modifying your old Mists version to be current is an enormous task. It is one thing to replace all GetNumRaidMembers or GetNumPartyMembers with current APIs and entirely a different animal to patch the whole entirety of Ace2 to make it work.
That just is not possible with a few lines of code.
You will have to update to the latest XLoot regardless of preference. What you ask just cannot be done otherwise.
Hello, I really like your addon but the only thing i am missing is on xloot monitor frames, i want to see the ilvl of the loot directly on my screen without having to mouseover to each item. I believe it is possible to get that info with current api cuz there are other addons acquiring that info. I tried to modify it myself but not so great with lua :) Thank you in advance
I have the group rolls in the top right of my screen. The items go off the screen. Can we get an option to change the direction the buttons are formed in addition to up and down?
Hi, i am using Xloot addon only for Loot Monitor, it's easy check who get nice items (nice job and ty for this!). Can u add item level for this feature?
For example: Jacky [Nice Plate armor] (935)
Hi, I just found this addon and it for the most part solves what I've been looking for some time. I have one question and/or request depending on the answer.
Is there a way to keep the Loot Monitor items open for longer than 30 seconds? Or better yet, a way to keep them on screen until I chose to dismiss them? This is more for that running alts through LFR and seeing what drops other people get that they might not need.