Download
(11 Kb)
Download
Updated: 10/24/20 03:26 AM
Pictures
File Info
Compatibility:
Markarth (6.2.5)
Stonethorn (6.1.5)
Greymoor (6.0.5)
Updated:10/24/20 03:26 AM
Created:02/20/17 10:48 PM
Monthly downloads:1,790
Total downloads:342,496
Favorites:217
MD5:
Group Loot Notifier  Popular! (More than 5000 hits)
Version: 2.17
by: Hoft [More]
This addon will display in the chat window the items that you and your group members have looted.

It is for people who just want a standalone no-frills group loot logging feature without any unwanted baggage. This is a tiny addon (a mere couple of kilobytes) with virtually zero footprint.

Group Loot Notifier will only show notable items: specifically, set items of any color quality, consumables or trophies of blue quality or better (e.g., motifs, recipes, and treasure maps), and any item of purple quality or better.

Slash command: /loot

See also:
Info Panel
Chat Tab Selector
Map Pins
Bandits Gear Manager
Bandits Loot Manager
Bandits Alchemy Helper
Bandits User Interface

2.17
- API update
- Added collected set items filter

2.16
- Update for LibAddonMenu-2.0 r31

2.15
- API update
- Added: Timestamps

2.14
- API update

2.13
- API update
- Bandits options menu compatibility

2.11
- API update
- Menu update

2.10
- Update API
- New Bandits UI menu style support

2.9
- Armor type fix
- New exceptions

2.8
- Update API
- Added jewelry quality filter
- Settings are resetted to defaults

2.7
- Motifs are now do not hides by "Filter in group"
- Russian localisation fix
- Added new exceptions to hide reward coffers

2.6
- Add-on menu is rebuilded
- Added: "Beg item" and "Offer item" options to items context menu
- Added: Filter for collectible items

1.5
- Options menu now more simple

1.4.3
- Added Bandits User Interface menu compatibility

1.4.2
- Updated API

1.4.1
- Group filters fix

1.4
- Added option to select target tab/tabs
- Added filter for set items

1.2.9
- Update API
- Name format

1.2.8
- Charged for Lightning staves
- Rebuilded menu and events
- Fixed Log button
- Options to disable UI elements
- Master veapons added to notable items

1.1.7
- Added: inventory space

1.1.6
- Update API
- Infused weapons added to notable items

1.1.5
- Infused Axes added to notable items
- Blue jewelry now in exceptions when auto filter is on
Archived Files (23)
File Name
Version
Size
Uploader
Date
2.16
10kB
Hoft
06/27/20 06:50 AM
2.15
10kB
Hoft
05/12/20 07:25 AM
2.14
10kB
Hoft
02/26/20 07:03 AM
2.13.2
10kB
Hoft
09/28/19 07:03 AM
2.13.1
10kB
Hoft
09/15/19 12:36 PM
2.13
10kB
Hoft
09/12/19 08:58 AM
2.11
10kB
Hoft
05/13/19 11:22 AM
2.10
10kB
Hoft
01/01/19 06:34 PM
2.9.1
10kB
Hoft
08/29/18 09:21 PM
2.8
10kB
Hoft
08/19/18 10:00 PM
2.7
10kB
Hoft
03/07/18 08:03 PM
2.6
10kB
Hoft
01/24/18 10:39 AM
1.5
9kB
Hoft
01/21/18 04:01 AM
1.4.3
9kB
Hoft
01/12/18 04:30 PM
1.4.2
9kB
Hoft
01/09/18 11:22 PM
1.4.1
9kB
Hoft
12/01/17 11:24 PM
1.4
9kB
Hoft
11/30/17 08:32 AM
1.2.9
9kB
Hoft
10/06/17 10:19 PM
1.2.8
9kB
Hoft
09/25/17 04:34 PM
1.1.7
8kB
Hoft
08/31/17 01:29 AM
1.1.6
8kB
Hoft
08/14/17 05:17 PM
1.1.5
8kB
Hoft
06/14/17 08:55 AM
1.1.3
10kB
Hoft
02/20/17 10:48 PM


Post A Reply Comment Options
Unread 02/12/18, 07:13 PM  
emotep

Forum posts: 4
File comments: 91
Uploads: 0
Is there any way to ONLY have the Loot History button on the chat window enabled? I don't care to see the loot notifications in the actual chat log, I just want to be able to mouseover or click the little report button to see what has dropped.
Report comment to moderator  
Reply With Quote
Unread 02/09/18, 08:00 AM  
Hoft
 
Hoft's Avatar
AddOn Author - Click to view AddOns

Forum posts: 17
File comments: 1713
Uploads: 12
Originally Posted by BloodStainCHild
could you add time in front of the Loot?
Try to click add-on button in right coner of chat window.

And... timestamp=string.sub(GetTimeString(),1,5) is much easyer ))
Report comment to moderator  
Reply With Quote
Unread 02/09/18, 06:00 AM  
BloodStainCHild
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 56
Uploads: 14
could you add time in front of the Loot?

i did it by myself but i think other playes would like it too also maybe with the setting to tun it on/off and format

Code:
-- Return a formatted time
local function CreateTimestamp(timeStr, formatStr)
	formatStr = formatStr or "HH:m"
	
	-- split up default timestamp
	local hours, minutes, seconds = timeStr:match("([^%:]+):([^%:]+):([^%:]+)")
	local hoursNoLead = tonumber(hours) -- hours without leading zero
	local hours12NoLead = (hoursNoLead - 1)%12 + 1
	local hours12
	if (hours12NoLead < 10) then
		hours12 = "0" .. hours12NoLead
	else
		hours12 = hours12NoLead
	end
	local pUp = "AM"
	local pLow = "am"
	if (hoursNoLead >= 12) then
		pUp = "PM"
		pLow = "pm"
	end
	
	-- create new one
	local timestamp = formatStr
	timestamp = timestamp:gsub("HH", hours)
	timestamp = timestamp:gsub("H", hoursNoLead)
	timestamp = timestamp:gsub("hh", hours12)
	timestamp = timestamp:gsub("h", hours12NoLead)
	timestamp = timestamp:gsub("m", minutes)
	timestamp = timestamp:gsub("s", seconds)
	timestamp = timestamp:gsub("A", pUp)
	timestamp = timestamp:gsub("a", pLow)
	
	return timestamp
end

// edit on "local function LogItem(itemName, itemType, quantity, receivedBy, itemId)"
PostMsg("[" .. CreateTimestamp(GetTimeString(), "HH:m:s") .. "] Loot:"..msg)
Last edited by BloodStainCHild : 02/09/18 at 06:00 AM.
Report comment to moderator  
Reply With Quote
Unread 01/24/18, 09:25 PM  
Hoft
 
Hoft's Avatar
AddOn Author - Click to view AddOns

Forum posts: 17
File comments: 1713
Uploads: 12
Re: Version number

Originally Posted by HowellQagan
Did we just jump to 2.6 from 1.5?
New engine, next major version.
Report comment to moderator  
Reply With Quote
Unread 01/24/18, 01:03 PM  
HowellQagan
 
HowellQagan's Avatar

Forum posts: 11
File comments: 437
Uploads: 0
Version number

Did we just jump to 2.6 from 1.5?
Report comment to moderator  
Reply With Quote
Unread 12/18/17, 07:32 PM  
Hoft
 
Hoft's Avatar
AddOn Author - Click to view AddOns

Forum posts: 17
File comments: 1713
Uploads: 12
Originally Posted by PhnxZ
Show all set items with all traits.. for both solo and group
Auto filters in group - OFF
Show only set items in group - ON
Originally Posted by PhnxZ
Show everything purple or above
There is no options for item quality because it is not important. You can get green item and improve it to upper quality item. Much more important things it is set and trait.
Originally Posted by StrangerFull
Включение/выключение пунктов Loot Notifier, Remember looted items и Show bag space icon работают не совсем корректно. То есть они включаться/выключаться то включаются и выключаются и цвет надписей с серого на белый меняют, но сами значения ON и OFF не меняются.
Проверил. Работает идеально. У меня, во всяком случае. Хотя там уже много всего менялось, может просто не выкладывал новую версию... Кое что допишу и будет обновление.
Originally Posted by StrangerFull
Везде dvtcnj melee написано melle про оружие ближнего боя, да и сам пункт Mark Two Handed Weapons с забытым пробелом между двумя словами.
Будет исправлено со следующим апдейтом.
Report comment to moderator  
Reply With Quote
Unread 12/17/17, 01:23 PM  
PhnxZ
AddOn Author - Click to view AddOns

Forum posts: 8
File comments: 182
Uploads: 1
Hi, I'm trying to replicate the settings before the recent update:
Show all set items with all traits
Show everything purple or above

but I cant seem to get it to do this, also would like it for both solo and group.

Any pointers for what settings I need, or anything you can add to the options?
Report comment to moderator  
Reply With Quote
Unread 12/17/17, 10:41 AM  
StrangerFull
AddOn Author - Click to view AddOns

Forum posts: 33
File comments: 174
Uploads: 1
Несколько ошибок в аддоне:

1. Включение/выключение пунктов Loot Notifier, Remember looted items и Show bag space icon работают не совсем корректно. То есть они включаться/выключаться то включаются и выключаются и цвет надписей с серого на белый меняют, но сами значения ON и OFF не меняются.
2. Опечатки (ну или ошибки) в описании пунктов Mark good trated weapons и Mark TwoHanded Weapons. Везде dvtcnj melee написано melle про оружие ближнего боя, да и сам пункт Mark Two Handed Weapons с забытым пробелом между двумя словами. Мелочи, а надо бы поправить
Report comment to moderator  
Reply With Quote
Unread 12/01/17, 11:26 PM  
Hoft
 
Hoft's Avatar
AddOn Author - Click to view AddOns

Forum posts: 17
File comments: 1713
Uploads: 12
Originally Posted by Hibiki54
New version doesn't seem to work.
Fixed
Report comment to moderator  
Reply With Quote
Unread 12/01/17, 12:00 PM  
HowellQagan
 
HowellQagan's Avatar

Forum posts: 11
File comments: 437
Uploads: 0
Originally Posted by Hoft
Originally Posted by HowellQagan
Love it but I have the "post to all tabs" OFF and it still keeps posting to all my tabs. Does it have anything to do with them being System messages? I would like to have those system messages on some of my other tabs... but not the loot notification.
Added option to select target tab.
Woah! That's awesome thanks! I didn't know you could print messages to the Emote channel too.

Is there any kind of donation you accept?
Last edited by HowellQagan : 12/01/17 at 12:15 PM.
Report comment to moderator  
Reply With Quote
Unread 12/01/17, 01:00 AM  
Hibiki54

Forum posts: 0
File comments: 16
Uploads: 0
New version doesn't seem to work. I installed, re-loaded UI a few times and it was not showing anything in the dungeons I was doing. Went back to the previous version which still works.
Report comment to moderator  
Reply With Quote
Unread 11/30/17, 08:30 AM  
Hoft
 
Hoft's Avatar
AddOn Author - Click to view AddOns

Forum posts: 17
File comments: 1713
Uploads: 12
Originally Posted by HowellQagan
Love it but I have the "post to all tabs" OFF and it still keeps posting to all my tabs. Does it have anything to do with them being System messages? I would like to have those system messages on some of my other tabs... but not the loot notification.
Added option to select target tab.
Report comment to moderator  
Reply With Quote
Unread 11/29/17, 11:20 AM  
HowellQagan
 
HowellQagan's Avatar

Forum posts: 11
File comments: 437
Uploads: 0
Love it but I have the "post to all tabs" OFF and it still keeps posting to all my tabs. Does it have anything to do with them being System messages? I would like to have those system messages on some of my other tabs... but not the loot notification.
Last edited by HowellQagan : 11/29/17 at 11:21 AM.
Report comment to moderator  
Reply With Quote
Unread 11/24/17, 01:06 PM  
Hoft
 
Hoft's Avatar
AddOn Author - Click to view AddOns

Forum posts: 17
File comments: 1713
Uploads: 12
lokicoon, it is simple and lightweght add-on. And this is his advantage. I think you want too much automation ))
Report comment to moderator  
Reply With Quote
Unread 11/23/17, 10:53 PM  
lokicoon

Forum posts: 3
File comments: 31
Uploads: 0
не вижу пользы
мой кейс использования сейвера следующий: все интересное, для себя и для продажи в GS, ItemSaver защищает автоматически - от деконструкции и продажи через DoItAll. Кроме того, нейтивно залоченные предметы не отображаются в крафтовых интерфейсах, в отличии от защищенных ItemSaver (сменить метки можно прямо на панели крафта). Очень упрощает рутину.

Но, некоторые предметы выпадают из предоставляемых ItemSaver-ом паттернов - приходится отслеживать их вручную. Улучшать паттерны его автор отказывается, приглашает к сотрудничеству создателей прочих эддонов.

Быть может, если не хочется заморачиваться с сейвером, добавишь возможность автоматически лочить искомые предметы?

Какой смысл как то выделять то что не изучено?
один перс поднимает - другой изучает, то что изучено крафтером - уходит на продажу или в урну. Вот именно неизученное крафтером (ну или не входящее в список им уже изученного, зайдя с другой стороны) и хотелось бы выделять как полезную находку. CraftStore же отображает о знаниях крафтера для текущего персонажа, помечает рецепты/мотивы/трейты если они не известны крафтеру.
Last edited by lokicoon : 11/23/17 at 10:56 PM.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: