A wonderful Warrior Aggro thread on Blizz forums
#34
chippydip,Jul 21 2005, 11:54 AM Wrote:I'd like to keep track of exactly what skills were used in what order so that if we learn more about how aggro works we don't have to throw out all the old data. I'm not sure if there is enough info in the combat log to get this level of detail from other players that are attacking the same mob or not (haven't looked into that yet). I'll dig into this more over the weekend and see what I can figure out.
No, you can't get specific skill use data from other players (for all attacks). You can however have each person in the experiment load the mod and extract saved data from SavedVariables.lua afterwards to compare notes.

The block of code after line 421 of Localization.lua on version 3.0 of Damage Meters is where you would hook into for tracking your own skill use. Just add something like:
Code:
if (spell == "Revenge")
  My_Increment_Revenge_Count();
  My_AddSpellToSpecificOrder(spell);
elseif (spell == "Shield Slam")
  My_Increment_ShieldSlam_Count();
  My_AddSpellToSpecificOrder(spell);
elseif...
.
.
.
end
The relevant healing hooks are a bit more spread out, but that stuff starts around line 801 of localization.lua.
Reply


Messages In This Thread
A wonderful Warrior Aggro thread on Blizz forums - by Olon97 - 07-21-2005, 10:05 PM
A wonderful Warrior Aggro thread on Blizz forums - by epssus - 09-13-2005, 04:19 PM
A wonderful Warrior Aggro thread on Blizz forums - by savaughn - 11-14-2005, 05:04 PM
A wonderful Warrior Aggro thread on Blizz forums - by savaughn - 11-22-2005, 08:23 AM

Forum Jump:


Users browsing this thread: 2 Guest(s)