that is my disarm code and sure....
Wrote on my tablet otherwise it would be more completeCode:local _, DisarmCD = GetSpellCooldown(676) local DS = GetShapeshiftForm() local DisarmDebuffs = {31884, 59016, 18499, 2825, 32182, 2825, 32182, 51713, 51271, 33702, 20572, 33697, 99740, 1719, 46924, 12472 } if DisarmCD == 0 then for i, v in ipairs(DisarmDebuffs) do if UnitBuffID("target", v) then if DS == 2 then return true end end end end
When is the UH DK profile going to be perfected?
I'm working on changing it up a little bit, the simcraft "rotation" didn't really translate well into pqr I believe. I think it's missing too many TFB procs but I have it set up the exact same way simcraft does so I'm not sure. I'll be tweaking it a bit and releasing a new version today or tomorrow most likely.
Last edited by Bossqwerty; 01-28-2012 at 03:14 PM.
Cant find PVE Subtlety Rogue profile .... :S any chance someone here can help me out and point me in the right direction ?
Standard 8/2/31 sub pve spec
Would be awesome ! :=)
PQR- Select Process...
Process : Edit Mode ( No Bot Fuctionality)
Version 1.1.1
Any ideas why this problem occured guys??? Ty in Advance
Have you tried running pqr as administrator? And make sure you are not running wow as admin.PQR- Select Process...<br />
Process : Edit Mode ( No Bot Fuctionality)<br />
Version 1.1.1 <br />
<br />
Any ideas why this problem occured guys??? Ty in Advance
I just updated my HPally SVN Profiles.... Heres a small list of the changes made:
-) Changed the ways Aura's were handled. Now every profile you run has the Freedom of using ANY aura you desire and it will save your choice each time you mount to put you back in that Aura when you dismount.
-) Fixed HolyPvP's Cleanse which in turn fixed it's issue where it would never cast Holy Light
-) Fixed across every Profile the bug where you are in a party and you would never Heal OR Cleanse yourself sometimes.
-) Started creating the code needed to turn Onya's HR code into a raid size smarter HR code like the one i wrote but am not using.
-----
*edit*
I believe that every Paladin profile should have this Aura Code in it somewhere
Code:if not SAVED then savedAura = 3 -- Default starting Aura you want the person to have. In this case Concentration Aura -- 1 = Devotion | 2 = Retribution | 3= Concentration | 4 = Resistance SAVED = 1 end local myAura = GetShapeshiftForm("player") local Aura = { 465, 7294, 19746, 19891, 32223 } if not IsMounted() and myAura ~= 5 then savedAura = myAura elseif IsMounted() and myAura ~= 5 then savedAura = myAura CastSpellByID(Aura[5], "player") elseif not IsMounted() and savedAura ~= myAura then CastSpellByID(Aura[savedAura], "player") elseif not IsMounted() and myAura == 5 then CastSpellByID(Aura[3], "player") end
--------------------
**edit**
if you tell me exactly what needs to be changed/added in mine, i could probably do it pretty quickly
Hey guys I'm trying to get Holy Shock to just do damage to the target but I'm not that good with code, can anyone help me out and show me what the code should look like just to do damage to the target. Any help would be much appreciated thx.
Name: Holy Shock
SpellID: 20473
Delay: 0
Try that out and tell me how it works, just make a new spell with the Info or change current one to something. Won't guarantee anything on it. But someone else might be able to say how it worksCode:local target = GetDamageTarget() if target ~= nil then return true end
EDIT* Since it comes from the holy tree, wouldn't it be best to use it as a heal, and not to damage a enemy?
Last edited by firepong; 01-28-2012 at 08:32 PM.