Download
(42Kb)
Download
Compatible with Retail, Classic & TBC
Updated: 09-25-23 04:33 AM
Pictures
File Info
Compatibility:
Fractures in Time (10.1.5)
WotLK Patch (3.4.2)
Classic (1.14.3)
Updated:09-25-23 04:33 AM
Created:03-24-11 08:20 AM
Downloads:33,822
Favorites:143
MD5:

MiniLoot  Popular! (More than 5000 hits)

Version: v10.1.5.230919
by: Vladinator [More]

Official repository can be found at GitHub.

Tired of the amount of messages related to looting items, reputation, experience, money, and so forth? If that is the case then this is the addon for you! MiniLoot is designed to summarize these type of messages in concise one-liners.

Features

  • Interface options for easy customization.
  • Change how messages and item icons appear.
  • Include bag and bank item in the item counter.
  • Mark items with appearances you have not yet collected.
  • Hide junk items, set filters for what quality of items are shown when soloing, in party or raids.
  • Show artifact power as loot instead of the default message.
  • Shorten faction names when standing changes.
  • Show tooltips when you mouseover links in chat.

MiniLoot
v10.1.5.230919 (2023-09-22)
Full Changelog Previous Releases
  • Added some handler checks for Classic.
  • Bumped mainline version.
  • Added TOC files for the other clients.
  • Classic era fixes.
  • Changed the default so own messages are prefixed, just for the sake of clarity.
  • TOC bump for 10.1
Optional Files (0)


Archived Files (4)
File Name
Version
Size
Author
Date
v10.0.0.221026
41kB
Vladinator
10-26-22 02:20 PM
v9.2.7.221009
41kB
Vladinator
10-09-22 06:13 AM
v9.2.7.220917
41kB
Vladinator
09-17-22 09:15 AM
v9.0.5.210608
41kB
Vladinator
06-08-21 02:45 AM


Post A Reply Comment Options
Unread 03-24-11, 11:07 AM  
IRID1UM
A Deviate Faerie Dragon
 
IRID1UM's Avatar

Forum posts: 12
File comments: 92
Uploads: 0
Thats a really nice idea I like it. Only the icons are kinda small to make out anything, hmm...
Last edited by IRID1UM : 03-24-11 at 11:55 AM.
Report comment to moderator  
Reply With Quote
Unread 03-24-11, 05:20 PM  
Vlad
A Molten Giant
 
Vlad's Avatar
AddOn Author - Click to view AddOns

Forum posts: 793
File comments: 337
Uploads: 31
Originally posted by IRID1UM
Thats a really nice idea I like it. Only the icons are kinda small to make out anything, hmm...
It inherits the font size used on your chat, but you can manually override this by simply editing line 306 in the lua file, you can make it by simply forcing it to return 12 if you want it to use 12 pixels in size.
Report comment to moderator  
Reply With Quote
Unread 03-24-11, 05:37 PM  
mrruben5
Guest

Join Date: Not Yet
Forum posts: 0
File comments: 0
Uploads: 0
MySQl
Report comment to moderator  
Edit/Delete Message Reply With Quote
Unread 03-25-11, 04:16 AM  
IRID1UM
A Deviate Faerie Dragon
 
IRID1UM's Avatar

Forum posts: 12
File comments: 92
Uploads: 0
Yes, thanks. I did that. At 18 the icons were somewhat recognizable on my screen.
Report comment to moderator  
Reply With Quote
Unread 03-25-11, 07:31 AM  
Vlad
A Molten Giant
 
Vlad's Avatar
AddOn Author - Click to view AddOns

Forum posts: 793
File comments: 337
Uploads: 31
Originally posted by IRID1UM
Yes, thanks. I did that. At 18 the icons were somewhat recognizable on my screen.
I'd have to figure out a good way to make the icons as large as the chat lines are, problem is it depends on font size (and thought I fixed that by making it read the font size settings... but maybe not?) Maybe screen size has something to do? I'lll look into it, at worst have the size settings easier to access and test, trough slash commands or something.
Report comment to moderator  
Reply With Quote
Unread 03-26-11, 01:38 AM  
IRID1UM
A Deviate Faerie Dragon
 
IRID1UM's Avatar

Forum posts: 12
File comments: 92
Uploads: 0
If it helps:
I'm playing at 1680x1050. My chat font is "SCT Emblem" which is (or was) included in Scrolling Combat Text. The font size is set to 11. My uiScale is at the rather strange value of "0.89999997615814". As additional chat addon I use Prat, but I dont think that makes a difference.
Cheers,
IRID1UM
Report comment to moderator  
Reply With Quote
Unread 03-26-11, 07:01 AM  
Slaxi81
Guest

Join Date: Not Yet
Forum posts: 0
File comments: 0
Uploads: 0
Hey,
very nice thank you.

Is there a way to change the output-chat (i want show this in an extra chat window)?


Have a nice weekend

slaxi
Report comment to moderator  
Edit/Delete Message Reply With Quote
Unread 03-26-11, 10:41 AM  
Vlad
A Molten Giant
 
Vlad's Avatar
AddOn Author - Click to view AddOns

Forum posts: 793
File comments: 337
Uploads: 31
Originally posted by Slaxi81
Hey,
very nice thank you.

Is there a way to change the output-chat (i want show this in an extra chat window)?


Have a nice weekend

slaxi
That should be doable, all you have to do is "simply" open the LUA file in Notepad or something and on top add this code:
Code:
local print = function(msg) ChatFrame3:AddMessage(msg) end
Then find the code that looks like (the "--" part is a comment, ignore those, not important):
Code:
        DEFAULT_CHAT_FRAME:AddMessage(line) -- output the summary (ChatFrame1 window)
Replace the "DEFAULT_CHAT_FRAME" part with let's say "ChatFrame3" and it should look like this:
Code:
        ChatFrame3:AddMessage(line) -- output the summary (ChatFrame1 window)
Note that ChatFrame3 may not be the right one, it can be anything between 1 (default), 2 (combat log I think) and up to 12 or more (not sure of the limit), simply find the right one by doing this in the game chat:
Code:
/run ChatFrame3:AddMessage("is this the right frame?")
It should show a message in the chat frame specified.

I will for future version add a easier way to configure the output and timing variables!
Report comment to moderator  
Reply With Quote
Unread 03-27-11, 02:14 AM  
Slaxi81
Guest

Join Date: Not Yet
Forum posts: 0
File comments: 0
Uploads: 0
Hey,

got it, thank you!



Have a nice day


Slaxi
Report comment to moderator  
Edit/Delete Message Reply With Quote
Unread 03-27-11, 11:46 AM  
Namtab
A Kobold Labourer

Forum posts: 0
File comments: 67
Uploads: 0
alchemy procs

love this addon but...
lets say i ask some1 to make me some potions/flasks etc, i get invited/invite that person to a group... theres any way to make MiniLoot not to filter the number of procs/items created?
Report comment to moderator  
Reply With Quote
Unread 03-27-11, 04:50 PM  
Vlad
A Molten Giant
 
Vlad's Avatar
AddOn Author - Click to view AddOns

Forum posts: 793
File comments: 337
Uploads: 31
Re: alchemy procs

Originally posted by Namtab
love this addon but...
lets say i ask some1 to make me some potions/flasks etc, i get invited/invite that person to a group... theres any way to make MiniLoot not to filter the number of procs/items created?
It's made to summarize, let's say he makes 5 flasks and 2 proc then you see in the chat that he made 7 flasks -should at least.

I'd recommend you make a "Loot" chat window and make it show loot messages, so you can tab to it to look at the real log as MiniLoot will only edit the default chat.

I will look into it, if it shows number of crafted items properly or not, may be a bug I have not noticed.
Report comment to moderator  
Reply With Quote
Unread 03-27-11, 06:49 PM  
Namtab
A Kobold Labourer

Forum posts: 0
File comments: 67
Uploads: 0
Re: Re: alchemy procs

Originally posted by Vladinator
It's made to summarize, let's say he makes 5 flasks and 2 proc then you see in the chat that he made 7 flasks -should at least.

I'd recommend you make a "Loot" chat window and make it show loot messages, so you can tab to it to look at the real log as MiniLoot will only edit the default chat.

I will look into it, if it shows number of crafted items properly or not, may be a bug I have not noticed.
tks for the fast reply
since this addon is pretty recent my experience with it not that big, didn't knew what to expect from X Y Z situations...

i can see a summary of what other ppl loot in group/raid (normal behaviour).

this was the only situation where i couldn't see the summary of items looted, as i said before when i asked some1 to make me some flasks (wile in group) i was hopin to see a summary of total flasks created/looted but nothing showed up.
dno, this might have something to do with items being crafted by other ppl.

for now guess i'll have to make a "Loot" chat window as u said, and pay attention next time i ask some1 to craft something
Report comment to moderator  
Reply With Quote
Unread 03-28-11, 05:08 AM  
Vlad
A Molten Giant
 
Vlad's Avatar
AddOn Author - Click to view AddOns

Forum posts: 793
File comments: 337
Uploads: 31
Re: Re: Re: Re: alchemy procs

New version up that deals with problems like slash command /miniloot to set the settings, crafted items by others in group should now show, you can specify what chat to output loot messages in, you can specify what font size icons should use as well, you can toggle showing of roll decisions and roll summaries (1 or 0 for on/off).

It's primitive but works, easy to use and it will suffice for now!
Report comment to moderator  
Reply With Quote
Unread 03-28-11, 07:09 AM  
IRID1UM
A Deviate Faerie Dragon
 
IRID1UM's Avatar

Forum posts: 12
File comments: 92
Uploads: 0
Thanks
Report comment to moderator  
Reply With Quote
Unread 03-29-11, 08:28 AM  
Namica
A Kobold Labourer
 
Namica's Avatar

Forum posts: 0
File comments: 169
Uploads: 0
I love it, thank you!
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: