isidorzzon, svensk? dom andra grejorna är till så du kan använda det till mining herbing, archaeology etc, har jag läst iaf. inte testat det själv dock.
isidorzzon, svensk? dom andra grejorna är till så du kan använda det till mining herbing, archaeology etc, har jag läst iaf. inte testat det själv dock.
Looking for some Disc/Holy Priest Profiles.... Any suggestions? Found only sheurons
Jo man kan ju tycka det.
Scatterer check mentally/bu_ba team nova's profiles, they got priest support
Do or Die
[PQR] Monk Mistweaver
I have a problem with my rotation, Whenever I switch rotations by pressing left shift it hard cast exorcism twice.
I have looked at my exorcism spells and nothing seems to stand out.
-Rotation Switch-
-exorcism art of war out of range-if not leftShiftDown then leftShiftDown = 0 end
if IsLeftShiftKeyDown() and GetTime() - leftShiftDown > 0.3 then
leftShiftDown = GetTime()
if AOEenabled then
AOEenabled = false
--PQR_WriteToChat("Rotation mode: \124cFFD4D4D4Single target")
PQR_SwapRotation("Ret Single (AveryRet)")
else
AOEenabled = true
--PQR_WriteToChat("Rotation mode: \124cFF3BB0FFArea of Effect")
PQR_SwapRotation("Ret Aoe (AveryRet)")
end
end
-exorcism art of war-local artOfWar = PQR_UnitBuffID("player", 8713
local csName = GetSpellInfo(35395)
--if CS is out of range then return true.
if IsSpellInRange(csName, "target") == 0 and artOfWar ~= nil then
return true
end
-exorcism art of war if cs >1.5local artOfWar = PQR_UnitBuffID("player", 8713
if artOfWar ~= nil then
return true
end
Seal of Right/Seal of Truthlocal artOfWar = PQR_UnitBuffID("player", 8713
local crusaderStrikeCD = GetSpellCooldown(35395)
if artOfWar ~= nil and crusaderStrikeCD >= 1.5 then
return true
end
local sealTruth = PQR_UnitBuffID("player",31801)
local sealRight = PQR_UnitBuffID("player",20154)
if AOEenabled
and sealRight == nil then
CastSpellByID(20154, "player")
return true
end
if not AOEenabled and
sealTruth == nil then
CastSpellByID(31801, "player")
return true
end
Would this work ok?
local holyPower = UnitPower("player", 9)
local divinePurpose = PQR_UnitBuffID("player", 86172)
local inquisition, _, _, _, _, _, inquisitionEndTime = PQR_UnitBuffID("player", 84963)
local crusaderStrikeCD = GetSpellCooldown(35395)
local judgementCD = GetSpellCooldown(20271)
if inquisition ~= nil then
inquisitionEndTime = inquisitionEndTime - GetTime()
end
if inquisition == nil or inquisitionEndTime <= 2 then
if holyPower >= 3 or divinePurpose ~= nil then
return true
else if inquisitionEndTime <=2 and holyPower > 0 and holyPower < 3 and crusaderStrikeCD >=2 and judgementCD >=2 then
return true
end
end
Last edited by averykey; 06-10-2012 at 03:40 PM.
Nova's version is for shadow priest
have anyone attempted to try to tank dragon soul with mentally's(Nova) blood deathknight profile? im interested in tanking but unsure .
Learn how it works, then try it out in Heroics and LFR. Most tanking-profiles got rotation automated but CD's left for manual use.
you talk as if there were turning back, as simple as activate the profile 10 minutes and disable it if you dont like how it works
[ Sheuron PQR Profiles Pack ] https://goo.gl/lfAMC
If you like this piece of code feel free to invite me a beer making a donation.
My paypal account: [email protected]
@sheuron Hi sheuron, when can we see any improvments to Fire Mage PVE profile?
I think the priority of Combustion it's not right... Combustion Helper shows a lot of damage missing. Other thing... when proc Impact, i need to make a macro to /stopcasting and casting it normally.
I noticed some coding had "else" written into them. Should I add this in, to make it look like this?
EDIT: One more question lol. How can I add into this to NOT SR if Rip has less than 6 seconds left? I have noticed quite a few times that Rip will have 2-3 seconds left, and SR will cast, and cause a 3-6 seconds lapse in Rip uptime before I get 5 CP for the reapply, and that shit adds up over a fight.Code:local SavageRoar, _, _, _, _, _, SavageRoarEndTime = UnitBuffID("player", 62071) local Rip, _, _, _, _, _, ripEndTime = UnitDebuffID("target", 1079, "PLAYER") local playerCP = GetComboPoints("player", "target") if Rip == nil then return false end else if SavageRoar then local SavageRoarFinishTime = SavageRoarEndTime - GetTime() if SavageRoarFinishTime < 2 then return true end if Rip then local ripFinishTime = ripEndTime - GetTime() if playerCP == 5 and ripFinishTime < 12 then if SavageRoarFinishTime < 6 and SavageRoarFinishTime < ripFinishTime then return true end end end return false else if playerCP > 0 then return true end end
Last edited by cukiemunster; 06-10-2012 at 11:40 PM.
i found some issue on the beta shadow prist profile from the Team Nova
i was testing in Pandaria with the new rotation and the rotation stucks with Mind flay, the issue iss if im stand still mindflay is not casting if i´m a little bit move left right it wont cast mindflay its very strangei have testet wirh a simple code again
but the same maybe Mind flay is broken @ the beta? :confused:local target = UnitExists("target")
if target == nil or PQR_IsMoving(1) or IsSpellInRange("Mind Flay", "target") ~= 1 then return false else
return true
end