Originally Posted by Nandei
Gear -tab is missing from 73b at the moment, I can only see Gear planner and custom gear there.
|
It's just hidden, you can make it visible from the VB window or download it again (I've re-uploaded the same version but with the Gear Tab visible).
EDIT:
After the comments previously about pet specials going off faster than the GCD of 1,5 seconds, I've been running a series of tests on it.
Using /combatlog I've been gathering data on both talented (i.e. Serpent's Swiftness) and untalented times between claws.
I'm a bit hampered by the fact that Focus regeneration is insufficient even with 2/2 Bestial Discipline and I'm hampered by the fact that Go for the Throat is streaky. Maybe my crit rate is too low to really keep it up.
Also, the combat log is naturally inaccurate. I'm hoping that sufficiently large amounts of data will smooth it out.
That said, with AotV, I could sustain fairly long bouts of spamming Steady Shot to keep my pet's focus up.
I wrote a little macro to sift through the combatlog in Excel and determine the average time between casts. When importing wow combat logs in Excel, be sure to use spaces, semicolons and colons as delimiters, since Excel was being picky about me using it's timestamps directly, so I had to split them up.
Sub CheckClaws()
Dim LastClaw, AvgTime, TotalTime, CountClaw As Integer
Application.Calculation = xlCalculationManual
CountClaw = 0
TotalTime = 0
AvgTime = 0
LastClaw = 0
'run through all the rows
For i = 1 To 65000
If Cells(i, 5) = "SPELL_DAMAGE" And Cells(i, 13) = "Claw" Then
Dim NewTime As Double
NewTime = Cells(i, 3) * 60 + Cells(i, 4) / 1000
CountClaw = CountClaw + 1
If CountClaw = 1 Then
AvgTime = 0
Else
AvgTime = NewTime - LastClaw
End If
TotalTime = TotalTime + AvgTime
LastClaw = NewTime
End If
Next
MsgBox "Average Time: " & (TotalTime / CountClaw)
Application.Calculation = xlCalculationAutomatic
End Sub
I ran both untalented and talented a number of times.
Talented (with 5/5/ SS) the average time between Claws fluctuates between 1.1 and 1.2 seconds.
Untalented it was between 1.35s and 1.45s.
It would point to a possibility that Serpent's Swiftness affects pet GCD, but we probably need more tests.