-
Notifications
You must be signed in to change notification settings - Fork 16
Description
When used with Profit Tracker, fake fishing xp drops are shown instead of the gold value with a coins sprite.
I believe this happens because the Custom XP Drops plugin pulls data from the onFakeXPDrop event, which happens earlier than when Profit Tracker sets the drops sprite and text in the onScriptPreFired event. So it ends up showing the default fishing values which are just placeholders, and also hiding the real gold drops which get modified later.
This could maybe be fixed by holding onto the drop widget from onScriptPreFired, and grabbing the used sprite id and text from that widget for your custom display either in onScriptPostFired or only when you are actually trying to display the relevant custom version (to give enough time for profit tracker to modify them first).