https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/422388-kickmydog-bm-mm-sv-hunter-profiles.html#post2793017
kuukuu: A suggestion for your brewmaster profile...He should use Expel Harm when you not a at full health instead of jab...this make a real difference....Expel Harm Heal a lot and damage a lot too... in your single target profile of course
anyone working on a more up to date pve profile for shadow priests?
sheepmoon has vanished,so was wondering is sheuron is working on updating his old sp one:-)
Hey guys, just to say im back in wow, but atm not doing any profiles for pqr.![]()
Stay Safe, Zero Latency, Play the Game!
Can any1 alter and imlement sheepmoons or novas holy paladin profile with Holy Prism please.?
So is there any top end fury warrior pve profiles? Ive been using xm5furypve but i sadly dont know how to add spells and what not. Its missing a major spell for questing, victory rush should be used when ever available in order to survive pulls larger than 1 target.
I just made a quick edit to the xrn5furypve profile I had installed to add Victory Rush and Impending Victory. I tried it out on my warrior and it seems to work okay, but he's only 68 and hasn't been played in quite a while. Hope this helps.
http://www.filedropper.com/warriorvictoryrush
Hi Deadpan
You gave me a list of all the MoP herbs which is fine and thanks but thats not the problem.
The problem is the interrupt profile when I activate it with a herbalist toon always crashes wow.
When I log on with my mining toon and mine in MoP everything works fine using Sheurons Interrupt profile with mining names inserted manually.
Was wondering if anyone knows why is this or could someone look at code and see if anything is out of date?
here are some codes i use for my warrior.. hope it helps ;]
Impending Victory.. if you are not glyphed change 103840 to 34428
HealthstonePHP Code:
local PlayerHP = 100 * UnitHealth("player") / UnitHealthMax("player")
if UnitAffectingCombat("player")
and UnitExists("target")
and UnitCanAttack("player","target")
and PlayerHP < 80
and ( select(2, GetSpellCooldown(103840)) == 0 ) then
CastSpellByName(GetSpellInfo(103840))
return true
end
Toggle Key for Cooldowns (press right control)PHP Code:
local PlayerHP = 100 * UnitHealth("player") / UnitHealthMax("player")
if PlayerHP < 25
and GetItemCount(5512,false,false) > 0
and ( select(2, GetItemCooldown(5512)) == 0 ) then
UseItemByName(5512)
return true
end
Blood Fury (enable cooldowns by pressing right control) remove (and UnitBuffID("player",12880) if you do not want to wait till you are enragedPHP Code:
if not RightControl then RightControl = 0 end
if IsRightControlKeyDown() and GetTime() - RightControl > 1 then
RightControl = GetTime()
if CDs then
CDs = false
PQR_WriteToChat("Cooldowns: |cFFE61515Disabled","Warrior")
else
CDs = true
PQR_WriteToChat("Cooldowns: |cFF15E61CEnabled","Warrior")
end
end
Bloodbath (enable cooldowns by pressing right control) remove (and UnitBuffID("player",12880) if you do not want to wait till you are enragedPHP Code:
if CDs
and UnitAffectingCombat("player")
and UnitExists("target")
and UnitCanAttack("player","target")
and UnitRace("player")=="Orc"
and UnitBuffID("player",12880)
and UnitPower("player") >= 30 then
return true
end
Recklessness (enable cooldowns by pressing right control)PHP Code:
if CDs
and UnitAffectingCombat("player")
and UnitExists("target")
and UnitCanAttack("player","target")
and UnitBuffID("player",12880)
and UnitPower("player") >= 30 then
return true
end
Potion of Mogu Power on Cooldown and BossPHP Code:
local Boss = false
for i=1,4 do
if UnitExists("boss"..tostring(i)) then
Boss = true
end
end
if Boss == false then
return false
end
local Lust = { 2825, 32182, 80353, 90355 }
for _,v in ipairs(Lust) do
if UnitBuffID("player", v) ~= nil then
if Boss and CDs then
return true
end
end
end
Skull Banner (enable cooldowns by pressing right control) remove (and UnitBuffID("player",12880) if you do not want to wait till you are enragedPHP Code:
local Lust = { 2825, 32182, 80353, 90355 }
local Boss = false
for _,v in ipairs(Lust) do
if CDs and UnitBuffID("player", v) ~= nil then
RunMacroText("/use Potion of Mogu Power")
end
end
for i=1,4 do
if UnitExists("Boss"..tostring(i)) then
Boss = true
break
end
end
local pot = GetItemCount(76095)
if Boss == false
and pot == false then
return false
end
Demoralizing Banner (Left Shift on mouseover)PHP Code:
if CDs
and UnitAffectingCombat("player")
and UnitExists("target")
and UnitCanAttack("player","target")and UnitPower("player") >= 30
and UnitBuffID("player",12880)
and not UnitBuffID("player",114206) then
return true
end
PHP Code:
if select(2,GetSpellCooldown(114203)) == 0
and IsLeftShiftKeyDown()
and not GetCurrentKeyBoardFocus() then
CastSpellByName(GetSpellInfo(114203))
if SpellIsTargeting() then
CameraOrSelectOrMoveStart() CameraOrSelectOrMoveStop() end
return true
end
Hey all, good to see PQR is still allive and kicking, keep up the good work.
I just got back from a year wow break, before i stopped playing i used PQR all the time and i loved it.
Now its time to level all my toons and get back into raiding again.
Problem (sorry if i missed it or im just being stupid), i cant get PQR to work.
I have a fresh install of wow, 3 days old, a new copy of PQR from today and no addons at all.
My toons are all lvl 85, when i start the program when WoW x86 is running i do see my char name and i select it.
Once i choose a profile and start attack i get shit loads of lua errors in my screen (like 10 errors a sec) and my toon doesnt start attacking.
Any idea what the problem could be ?
Cheers !
i would like to use smart prism , and is it possbile to add HoP , HoS , HoSalvation and some CD's on important situations like focus target below %30 or x number of ppl in raid below %40 or so. The mana usage of the profile was good in cata but i am being OOM too fast in LFR and 10men. my ilvl is ~470 atm. so not that bad for now? any ideas to be more mana conservative?