View Single Post
05/14/19, 07:02 PM   #2
Dolgubon
 
Dolgubon's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2016
Posts: 409
Well, I tend to try and go in the opposite direction, attempting to make items keep the new status. That said, that experience lets me know what code to change to make a short script that can do what you want!
EVENT_MANAGER:RegisterForEvent("CustomRemoveNewStatusEvent", EVENT_INVENTORY_SINGLE_SLOT_UPDATE , function(e,b,s,n) if n then ZO_SharedInventoryManager:ClearNewStatus(b, s) end end )

Paste that code in some addon that doesn't update much, (and maybe save it) and then it should clear the new status on any item you loot.
  Reply With Quote