Created
December 10, 2009 09:19
-
-
Save tekkub/253232 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local f = CreateFrame("Frame", nil, UIParent) | |
| f:RegisterEvent("START_LOOT_ROLL") | |
| f:SetScript("OnEvent", function(_, _, id) | |
| if not id then return end -- What the fuck? | |
| local _, _, _, quality, bop, _, _, canDE = GetLootRollItemInfo(id) | |
| if quality == 2 and not bop then RollOnLoot(id, canDE and 3 or 2) end | |
| end) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment