Results: 3Comments by: entropy43
File: AuctionFaster08-31-18
Very fast, thanks. Would you con...
Posted By: entropy43
Very fast, thanks. Would you consider making the addon search when you click a Favorites entry? I changed this: favButton:SetScript('OnClick', function (self) Buy:SetFavoriteAsSearch(self:GetParent().itemIndex); end); to favButton:SetScript('OnClick', function (self)...
File: LightViewPorter07-24-16
Still works for 7.0/Legion, kind of...
Posted By: entropy43
Still works for 7.0/Legion, kind of. Left and Bottom viewport panels are fine. Right and Top viewport panels move the world frame visually, but the mouse acts as if the viewport isn't there when interacting with world objects. For example, if you have a top viewport panel and want to click an NPC, you have to hover the mouse abo...
File: Scrolling Combat Text08-06-09
To fix the HoT overheal spam, you c...
Posted By: entropy43
To fix the HoT overheal spam, you can change the heal filter to apply to effective healing (instead of raw healing). In sct.lua line 520, change: if (amount < db) then return end to: if ((amount-overHeal) < db) then return end EavesDrop has a similar problem/fix (in EavesDrop.lua).