Thank you yet again sheuron! I get so excited whenever I see your multi-coloured posts!!Was wondering if you have any plans to add Dark Simulacrum to the DK PVP profile? If you could toggle between copying healing spells and cc's, that would be amazing. I tried to modify Leetjerks code but I couldn't get it to work.
For the priest holy profile I was wondering if there was a way to get pqr to cancel a heal if a more important heal is needed. For example, sometimes everyone will be topped off and pqr begins casting Heal just as another party member takes a large amount of damage. Usually it saves the member after it finishes casting but its very close, so alot of the times now I manually cancel it so it refocuses its heals on the member that needs it. Just a small thing to consider![]()
Updated my Disc PVE profile.
DISC PVETicklets DISC PVE 1.1
- A couple of bug fixes
- Updated with Sheuron's autotarget smart healing
- Smart AOE healing added, will get group size before deciding when to cast Prayer of Healing
- Atonement rotation casts smite and holy fire, so make sure an enemy is targeted, unless you want to focus heals on someone.
Edit: Some numbers using atonement rotation, Ultraxion 10N with 383ilvl:
34.1k HPS
11k Absorbs
5.2k DPS
Last edited by ticklets; 01-24-2012 at 08:00 PM.
Any decent UH DK PQR Rotations?
I'm thinking the patch is tomorrow with the new maintenance update that just posted. It's a long one (that IS what she said).
Surprised this work, since is not possible to work with Lightwell on any other function, by example UnitExists("Lightwell") return nothing. Anyway i think can be used combat log to check if we have a lightwell active and avoid InteractUnit spam.
Code:if event == "SPELL_CAST_SUCCESS" and spellId == LIGHTWELL_SPELLID then isLightwellDown = true Lightwell_GUID = destGUID elseif event == ("UNIT_DESTROYED" or "UNIT_DIED") and destGUID == Lightwell_GUID then isLightwellDown = false
Patch 4.3.2 will be deployed on US servers on Wednesday this week. I will have the new offsets up just after the servers have come back up.
The way I had originally done the code was as follows:
If InteractUnit("Lightwell") is not targetting the closest one, we can switch to that since /target always targets the closest. And yeah, I also found it strange I could just interact with it by name but couldn't do UnitExists on it. Also, InteractUnit() calls to non-existing units are not sent to the server, they just do nothing... so shouldn't worry about spamming it..Code:/targetexact Lightwell if target == Lightwell then InteractUnit("target") end -> Code here to restore last target or clear target using TargetLastTarget() / ClearTarget()
Last edited by Xelper; 01-24-2012 at 08:54 PM.
@Xelper - Do you have copies of some of the profiles that have been uploaded and shared recently, by chance...? I ask because almost all of the major file sharing sites have gone down in the last couple of days.![]()
Is anyone else having difficulty with Living Bomb casting? I've tried the original code, which simply ignores it and does not cast it on either the primary target or the focus target. I've also tried using the PVP version to see if it fires, but it doesn't. I've tried manually taking off some of the code, and NONE of the program works. I tried pasting in the mouseover code that was given before, and it makes the code very weird, making it so that actually clicking the target executes the rest of the code over and over.
EDIT: also, the AoE part of the code doesn't execute Fire Blast, but I kind of assume it's related to the living bomb not being casted...
Last edited by CPCS0101; 01-24-2012 at 09:07 PM.
well i've tested the lightwell code in dragon soul, and it worked perfectly, and didn't even get stacks of corruption either.
I tried making some code to nin ja crystals on ultraxion in lfr. didn't seem to work, perhaps they require a gcd. unitexists didn't work for them. gave up because it seemed like too much effort for something so pointless.