@nonobaddog11: Your PM box is full, I can't respond. Here is the code you are looking for:
Name: Ravage if Stampede
SpellID: 0
Code:local sStampede, _, _, _, _, _, stampedeEndTime = UnitBuffID("player", 78893) if sStampede then local finishTime = stampedeEndTime - GetTime() if finishTime < 2.0 then local spellRavage = GetSpellInfo(6785) CastSpellByName(spellRavage) return true end end
Last edited by Xelper; 01-10-2012 at 12:36 PM.
Hi if your still looking for other things to add in the holy pally pvp profile could try the hand of sac on team mate for incoming poly![]()
Yeah it was at bottom but when i didnt have SoI it dismounted me to cast it.
Hmm when u dont have HP it will just skip LoD and cast HR, as i said above, u can get HP before HR start to casting (from blessed life) so LoD (instant win)will be casted before HR.
And what about new smart targeting system? is it working for you?
Okay, but you really need to test your releases before uploading them............... Everytime when you release a new update, it always contains errors. Now, this update contains healin / heroic will errors when I try to run it in dungeon.
Here's what the error says:
And like what someone else said. LoD should be top priority. Look at blessed of life talent....Code:Message: [string " function pqrFunc0() -- Use Heroic will on ..."]:56: attempt to call global 'DangerousMagic' (a nil value) Time: 01/10/12 19:14:31 Count: 2911 Stack: [string " function pqrFunc0() -- Use Heroic will on ..."]:56: in function `?' [string "..."]:267: in function `PQR_NextAbility' [string "..."]:161: in function `PQR_CastNext' [string "..."]:150: in function `PQR_ExecuteBot' [string "..."]:40: in function <[string "..."]:23> Locals: group = "party" members = 1 (for index) = 1 (for limit) = 1 (for step) = 1 i = 1 member = "party1" memberhp = 100 (*temporary) = nil (*temporary) = "party1" (*temporary) = "attempt to call global 'DangerousMagic' (a nil value)"
And again, HR should be used when AOE HITS everybody, not when people starts reaching 30% hp or less. You save mana when HR-ing people at higher HP this way.........
Last edited by Testy9; 01-10-2012 at 02:29 PM.
Googlebee-- yes, the way the profiles run you must manually do the Deathwing body parts. I am not sure why. The corruptions, fragments, etc. work fine.
@googlebee: These body parts are not affecting combat, look at ---offensive spells--- ability. He uses that to prevent attacking targets out of combat.
You can just add a:
if UnitExists("boss1") then
return false
end
to the top of that ability and it will always work in combat.
Dont surpose anyone knows a code / how to add a funtion so when i click Alt it will start the rotation? it currently is waiting for combat so the rotation doesnt start
According to your suggestion, that will end looking like this:
Thanks for the help =)Code:if UnitExists("Icy Tomb", "Risen Ghoul", "Mana Void", "Burning Tendons", "Wing Tentacle", "Arm Tentacle", "Twilight Assault Drake") then return false end if not rightkeydown then rightkeydown = 0 end if IsRightControlKeyDown() and GetTime() - rightkeydown > 0.3 then rightkeydown = GetTime() if noKS then noKS = false print("Killing Spree: \124cFF15E61CEnabled") else noKS = true print("Killing Spree: \124cFFE61515Disabled") end end if UnitIsDead("target") or ImmuneTarget("target") or not UnitCanAttack("player","target") or tonumber(UnitGUID("target"):sub(5,5),16) == 4 or ( not UnitAffectingCombat("target") and not SpecialAggro("target") and not UnitIsPlayer("target") ) or ( GetNumPartyMembers() > 0 and UnitPower("player") < 70 and select(2,GetSpellCooldown(57934)) < 2 ) then return true end
Is there any updated feral druid rotation? Last which i found is from 08.2011
Dont surpose anyone knows a code / how to add a funtion so when i click Alt it will start the rotation? it currently is waiting for combat so the rotation doesnt start
For Warlocks- As you may know I'm redoing lots of my code. This is for Destro Locks and is PVE only (Still flushing out pvp for locks).
link: http://chromiumcomputers.com/files/C...ro_Profile.rar
I need some feed back on it. Known issues that I know of is that Rain of Fire isn't working. so if you fix it let me know and i'll rep ya.
Sidenote: Demo PVE profile is still getting redone so give me some time.
how can i add a ability to target arena member 1,2,3? it do this all with pred swiftness proc as feral... but id like know know how to add arena members. even if i have to switch rotation. any help plz!
healing touch:
local _, _, _, PS = UnitBuffID("player", 69369)
local inRange = IsSpellInRange("Healing Touch", "player")
if PS ~= nil and inRange == 1 then
return true
else
return false
end
life bloom is working fine for me:
local _, _, _, PS = UnitBuffID("player", 69369)
local inRange = IsSpellInRange("Lifebloom", "player")
local _,_,_,LB = UnitBuffID("player", 33763)
if PS ~= nil and inRange == 1 and LB == nil then
return true
else
return false
end
and life blood 2 si fine with me:
local _, _, _, PS = UnitBuffID("player", 69369)
local inRange = IsSpellInRange("Lifebloom", "player")
local _,_,_,LB = UnitBuffID("player", 33763)
if PS ~= nil and inRange == 1 and LB < 3 then
return true
end