Paying G for Addon

Paying G for Addon

by kariolaki » Fri Feb 26, 2016 2:03 pm

Hi, need an addon to track felstriker procs.
Normaly it would show on combat log or on buff list but it doesnt.
A way to track it is via scanning current crit chance and if its higher than 100, then show message/icon/whatever


Im paying G if someone can implement an addon or macro about this


If someone is willing to do it I am up for testing it, Horde side PVE server.

Thank you very much
Typical Limited Edition attitude:
http://i.imgur.com/eu8jhLn.png
kariolaki
Sergeant
Sergeant
 

Re: Paying G for Addon

by schaka » Fri Feb 26, 2016 3:09 pm

schaka
Senior Sergeant
Senior Sergeant
 

Re: Paying G for Addon

by kariolaki » Fri Feb 26, 2016 5:53 pm

thanks for the reply and the link
doesnt work though :(
Typical Limited Edition attitude:
http://i.imgur.com/eu8jhLn.png
kariolaki
Sergeant
Sergeant
 

Re: Paying G for Addon

by kariolaki » Sat Mar 05, 2016 12:22 am

bump
Typical Limited Edition attitude:
http://i.imgur.com/eu8jhLn.png
kariolaki
Sergeant
Sergeant
 

Re: Paying G for Addon

by kariolaki » Tue Mar 15, 2016 10:50 pm

kariolaki wrote:bump

.
Typical Limited Edition attitude:
http://i.imgur.com/eu8jhLn.png
kariolaki
Sergeant
Sergeant
 

Re: Paying G for Addon

by AfterAfterlife » Wed Mar 16, 2016 12:12 am

First of all, I don't have a Vanilla client to test it, so you'll be the guinea pig here.

I'm not very familiar with Vanilla API, but would be great if anyone could confirm if event "COMBAT_RATING_UPDATE" is implemented in 1.12 patch.

For now, I will leave here a solution that should work, but it's not the most efficient one.
Code: Select all
local timer = CreateFrame("FRAME");
local GetTime = GetTime;
local time, elapsed = GetTime(), 0;
timer:SetScript("OnUpdate", function()
     elapsed = GetTime() - time;
     if elapsed > 0.1 then
          time = GetTime();
          if GetCritChance() > 100 then
               DEFAULT_CHAT_FRAME:AddMessage("You have now +100% crit chance!");
               time = time + 3; --this will add +3secs to the timer
          end
     end
end);

timer:SetScript("OnEvent", function()
     DEFAULT_CHAT_FRAME:AddMessage("Combat_Rating_Update working...");
end);

timer:RegisterEvent("COMBAT_RATING_UPDATE");


Make an addOn with the code above and report the results.
Basically, it should warn you with a chat message everytime you have +100% crit chance.

I also add a simple test to see if the event that I mentioned above is working or not.
AfterAfterlife
Grunt
Grunt
 

Re: Paying G for Addon

by Pottu » Fri Mar 18, 2016 1:19 pm

You are not allowed to pay gold for an addon or any other real world service.

The GM team.
User avatar
Pottu
Game Master
Game Master
 


Return to Addons & macros