Whats the best profile for hunter PVE dps in average 463 ilvl gear. Been looking everywhere
Whats the best profile for hunter PVE dps in average 463 ilvl gear. Been looking everywhere
Kickmydog`s
Is there a function for getting the player's latency? I can't find any documentation for PQR.
PQR_SpellAvailableTime = ((select(3,GetNetStats()) + select(4,GetNetStats())) / 1000)
edit:
page 470 old thread
valma
local Latency = (select(3, GetNetStats()) + select(3, GetNetStats())) \ 500
if startTime ~= nil and GCDstartTime ~= nil then
local Latency = (select(3, GetNetStats()) + select(3, GetNetStats())) \ 500
local timeLeft = startTime + duration - GetTime()
local GCDtimeLeft = GCDstartTime + GCDduration - GetTime()
If GCDtimeLeft <= Latency Then
If timeLeft <= Latency Then
if spellUsable ~= nil then
pq_SpellAvailable = "true"
end
end
else
If timeLeft <= GCDtimeLeft + Latency Then
if spellUsable ~= nil then
pq_SpellAvailable = "true"
end
end
end
else
pq_SpellAvailable = "false"
end
Last edited by averykey; 10-20-2012 at 09:48 PM.
My Svn - https://subversion.assembla.com/svn/averykeys-svn/
Hey guys fairly simple one here.
Trying to get water sheild not overiding earth shield in arenas.
So if i have earth shield on pqr is casting water shield
wondering what the template is.
Water shield Spell ID is 52127
Earth Shield Spell ID is 974.
Thanks if anyone can help
For anyone that has non-passive buff classes, I suggest using the following so you don't have to cross check other buffs.
id nameCode:GetRaidBuffTrayAuraInfo(id)
1 Stats
2 Stamina
3 Attack Power
4 Attack Speed
5 Spell Power
6 Spell Haste
7 Critical Strike
8 Mastery
Do or Die
[PQR] Monk Mistweaver
my pqr is not interrupting =(
@ Kinkeh - I'm using your 2H Frost DK profile (ilvl 480) and running into extreme amounts of downtime.
Can Ability Check Delay and Auto Lag Tolerance effect this?
I'm trying to get all 3 interrupt scenarios to work here for DRUIDS, but this isn't working.....
Any help?
if i just use a local catForm for skull bash (106839) and else that to 106839 for bear it works, But that doesn't work for Solar Beam (Balance Interrupt spell)
Trying to incorporate all 3 under each situation.
driving me nuts! ><
Code:if xelperInterruptInit == nil then --TestComment xelperInterruptInit = true function PQR_InterruptSpell() local _, playerClass = UnitClass("player") if playerClass == "DEATHKNIGHT" then return 47528 elseif playerClass == "DRUID" then local catForm = UnitBuffID("player", 768) local bearForm = UnitBuffID("player", 5487) if catForm ~= nil then return 106839 else if bearForm ~= nil then return 106839 else return 78675 end elseif playerClass == "HUNTER" then return 34490 elseif playerClass == "MAGE" then return 2139 elseif playerClass == "PALADIN" then return 96231 elseif playerClass == "PRIEST" then return 15487 elseif playerClass == "ROGUE" then return 1766 elseif playerClass == "SHAMAN" then return 57994 elseif playerClass == "WARLOCK" then return 19647 elseif playerClass == "WARRIOR" then return 6552 else return 0 end
Last edited by googlebee; 10-21-2012 at 05:28 AM.
I think solarbeam has to be placed? If it doesn't this should workPHP Code:
elseif playerClass == "DRUID" then
local catForm = UnitBuffID("player", 768)
local bearForm = UnitBuffID("player", 5487)
local moonkinForm = UnitBuffID("player", 24858)
if catForm ~= nil then
return 106839
elseif bearForm ~= nil then
return 106839 else return 78675
elseif moonkinForm ~= nil then
return 78675 else return 54812
end
if that doesnt work replace it with this
if catForm ~= nil then
return 106839
elseif bearForm ~= nil then
if IsPlayerSpell(106839) then
return 106839
elseif IsPlayerSpell(78675)
return 78675
end
elseif moonkinForm ~= nil then
if IsPlayerSpell(78675) then
return 78675
elseif IsPlayerSpell(54812)
return 54812
end
why does bear have solarbeam?
Last edited by averykey; 10-21-2012 at 08:27 AM.
My Svn - https://subversion.assembla.com/svn/averykeys-svn/