Your work will be missed , loved the paladin one.
Your work will be missed , loved the paladin one.
He never said he would quit making updates, did he?
Your 2.2 profile works flawlessly for now, just would love to see the changes we discussed earlier ( Chain heal on 5 maelstrom / EB coding )
And the addition of new adds would be appreciated :P
If you want to change healing rain to chain heal, this is working for me. the only thing is that it won't target yourself.
There is probably an easy fix for that, but i'm really no good at this.
anyhoo. I went to ability editor and copied healing rain, named it Healing : Chain Heal (for consistency), and then used this code:
then move to rotation editor, and add healing : chain heal to where healing : healing rain is and remove healing rain.Code:local MS, _, _, Stack = UnitBuffID( "player", 53817 ) if HealingRainKey and PQR_SpellAvailable(1064) and Stack == 5 and UnitIsFriend("player","mouseover") then _castSpell(1064) end
Last edited by boxo; 09-13-2013 at 08:46 AM.
nice profile!
What new mobs? im 13/14 and ive had no problems
WoW LUA Script Developer
Need Something Custom? WarmaneScripts.com
Skype - grapejuice111
Got 14/14 yesterday and had troubles with: "Deactiovated Missle Turret", "Shockwave Missle Turret",
"Laser Turret", "Electromagnet", "Disassembled Crawler Mines",
Question, any reason EB doesn't cast when I enable AoE ?
andCode:local MS, _, _, Stack = UnitBuffID( "player", 53817 ) local AS = UnitBuffID("player", 16188) if not AoE or not AoECL then if AS then _castSpell(117014, "target") end if MS ~= nil then if Stack == 5 then _castSpell(117014, "target") end end end
Code:local MS, _, _, Stack = UnitBuffID( "player", 53817 ) if HealingRainKey then return false end if not AoE and not HealMode then if MS ~= nil then if Stack >= 2 then _castSpell(117014, "target") end end end
It works flawlessly on single target, but refuses to work in aoe.
Last edited by Sevve3; 09-14-2013 at 12:52 PM.
I don't know for sure, but both of your abilities are looking for AoE to be false, "if not AoE".
I would say that this would cause them not to function in AoE situations.
Also, again, not an expert, but I don't think that you need to add "if HealingRainKey then return false" as long as your healing rain/chain heal ability is higher in the activity list.
Just a thought.
Finishing up some contract work today (god i make to much money doing PQR stuff) then ill try to release the 5.4 update. Heres what the change log is looking like.
v2.7
- Added Drop down menu for healing rain key (Pretty much choose to use Healing Ran or Chain Heal via drop down menu)
- Added PQI options for Eng Gloves, Pot on lust
- Changed EB from hard cast to MS stacks >=1 (So it doesn't hard cast off the pull pretty much)
- Optimized AoE rotation
- Bug fix: Will now use UE again if not in melee range
- Few misc tweaks ive added in since last release and forgot about(Yes, because there's alot)
Sorry its taken so long to get this update out. But its almost there.
WoW LUA Script Developer
Need Something Custom? WarmaneScripts.com
Skype - grapejuice111
New build up.
v2.7 9/15/2013
- Updated for 5.4
- Added Projection Key
- Added Drop down menu for healing rain key (Pretty much choose to use Healing Ran or Chain Heal via drop down menu)
- Added PQI options for Eng Gloves, Pot on lust
- Changed EB from hard cast to MS stacks >=1 (So it doesn't hard cast off the pull pretty much)
- Optimized AoE rotation
- Bug fix: Will now use UE again if not in melee range
- Few misc tweaks ive added in since last release and forgot about(Yes, because there's alot)
Update Via PQR or DL link.
WoW LUA Script Developer
Need Something Custom? WarmaneScripts.com
Skype - grapejuice111
just doing some grinding with the [profile, and it doesn't seem to be using elemental mastery or ascendance.
Last edited by boxo; 09-16-2013 at 03:16 PM.
Do you have the cooldown toggle enabled?
Also 2.7.1 is out
v2.7.1 9/16/2013
- Added Chain Heal Mouse Over Logic
- Fixed AoE/CD toggles from changing when text box is open.
WoW LUA Script Developer
Need Something Custom? WarmaneScripts.com
Skype - grapejuice111