Been keeping my eye on this thread, used the search function so don't yell at me!
Anyone have a working Demonology profile? Don't really have time to make one myself, but would be willing to donate to anyone that could make a decent one.![]()
Does anyone have a moonkin rotation for a 85-90 that will heal itself besides just renewal? Mine can cast Renewal only. It's annoying!!! I want to have Healing Touch and Rejuvenation.
I can donate via paypal once I know it's working!
Just a update. Finally got membership and going to try and level my druid rotation to 87 tonight and tomorrow to try and get Symbiosis at least coded since I'm only off 1 day this week. We will see what happens though.
any shadow Priest LvL 90 Rotation there?
iss Mentally not working on a good Shadow Priest Profile?
i Love the Latest Dragon Soul Rotation from Mentally
You aren't the first to ask this. However the others don't clear their inbox's either *ahem* (you know who u are you two). With Druid being my main now, and me being Resto/Boomy.. Expect something from me within a week (for both).
I'm finishing up my grind to 90 (been busy with work and all) and then I'll really hash out the code for both Boomkin and Resto. Expect them to be on par with my HPally by the time I'm done coding them (so not the initial release, but when I start nit-picking at the little things)
Mentally is currently still getting situated after her move. She had something amazing in the work before she left, but never fully released it. Expect it as soon as she's back and coding again
Her main is a Warlock now so I don't think it'll get as much love as before, but she's a perfectionist... You never know![]()
FIXED.
But another question.
How can i check which ability doesnt work?
Last edited by vorn10; 09-28-2012 at 09:21 PM.
I had... but well it is working now, since i moved the crystal's data from its link...
BUT... i'm here to ask,
How do you put a condition to check if there is more than one mob around or if the targeted mob is not as closed as required to the skill to hit him? i mean... here is an example...
I'm using the brewmaster aoe, mostly on dungeon runs, and its working "fine" but would be greatly enhanced if Keg Smash (Keg Smash - Spell - World of Warcraft) would only be used if the target or targets would be close to him (8 yards) as well it would be great to only Spinning Crane Kick (Spinning Crane Kick - Spell - World of Warcraft) if there were 8+ targets nearby me...
Can anyone help me with those?
Here is the current SCK ability code:
and here is KS ability code:PHP Code:
if PQR_SpellAvailable(101546)
and UnitPower ("player") >= 40
then
return true
end
hope KuuKuu dont mind asking it here...PHP Code:
if PQR_SpellAvailable(121253)
and UnitPower ("player") >= 40
then
return true
end
and btw, there is no support on crystal's profile for Death Touch, which is pretty amazing.
PQR has nothing that tells how much mob's is around you. I keep suggesting to make PQR_CustomTarget work on everyone instead of just player's. but haven't gotten any feedback on that yet. If it could, it would be a simple act of just plugging PQR_CustomTarget into PQR_UnitDistance and having it save all that data to a table and then just get the total number of entries in that table for say any mob withing 5 feet of the player.
You will just have to set the spells to a key like Ctrl/Alt/Shift and use them that way if you want to it do what you want it to do.
Ok... but how could i implement a min distance to cast a skill? i mean... i saw something on sheuron's profiles that would make it at least 30 yards from a target and run towards to cast the skill or something like that... i mean, it checks the distance and THEN cast them. Any thoughts?