This site works best with JavaScript enabled. Please enable JavaScript to get the best experience from this site.
What does the provided patch do? Fixes the counter for GrindFu. Without this fix I could not get grindfu to register any kills.
Please provide any additional information below.--- GrindFuold.lua Mon Oct 06 16:30:05 2008+++ GrindFu.lua Mon Oct 06 16:10:32 2008@@ -135,7 +135,7 @@ function GrindFu:OnEvent(timestamp, eventType, srcGUID, srcName, srcFlags, dstGUID, dstName, dstFlags, spellId, spellName, spellSchool, amount) if eventType == "UNIT_DIED" then partyFlag = string.sub(dstFlags, string.len(dstFlags))- if not partyFlag == 1 then+ if partyFlag ~= 1 then local new = false for k in pairs(killTable) do if killTable[k][1] == dstName then
To post a comment, please login or register a new account.