The "Items Looted" stuff on the DB Main tab doesn't work because of Trinity - it's not supported.
It's a bit complicated to explain - but the simplest is this:
Demonbuddy has things called "targeting providers" - one for each of Combat, Loot, and Destructibles.
Trinity actually overrides all three, and sets each provider to be a "blank" provider, meaning the method that Demonbuddy uses to track Items Looted (the "Loot" provider) isn't even used by Trinity.
Trinity has a bit of a hack in that it replaces the entire Combat routine logic through the plugin (which is why there's a "blank" combat routine). The way Giles had this all setup is a bit backwards... but hey it works.
So - the Items Looted counter uses the Loot Targeting provider, which trinity is replacing with an empty list.
I can't just wire-up the loot targeting provider without ripping out a bunch of wiring and targeting logic (I would have to replace all 3 targeting providers, not just 1), as well as completely rebuild the combat hook mechanism, etc. Too much work for so little benefit...
Hope this helps (someone) understand