Oh and this post is over nine thousand
Oh and this post is over nine thousand
WoW LUA Script Developer
Need Something Custom? WarmaneScripts.com
Skype - grapejuice111
Looking for testers for a Destruction warlock profile. Please see upcoming thread in Profiles section!
Last edited by blaythe; 03-28-2013 at 05:00 PM.
Anyone still got the cokx dk pvp profiles?? can't find it anywhere.
Hello, i'm experiencing an issue with the auto interrupt as a warlock.
I'm using the kick from my pet. My interrupt percent is set to "15" and the range kick of my pet is "40" yards.
Alright, if my pet is in range for the kick, it will interrupt perfectly.
Now imagine i'm in arena and there is a shaman casting a heal at 100 yards from my pet, as soon as he will start casting, my pet will go for him but he wouldn't have time to kick the shaman on cast, that's logic because the shaman was too far and the kick range is only 40 yards. The problem is that the pet will kick the shaman after he did the cast anyway ...
Is it possible to configure the interrupt hack to make it kick ONLY AND ONLY if there is a cast available to avoid those kind of problems ?
Here is a video of the issue : blabla - YouTube
Will really appreciate if someone can help me there !
Last edited by manw; 03-29-2013 at 06:20 AM.
d e l e t e d
Last edited by werewolfspb; 03-29-2013 at 09:18 AM.
how to initialize members[i].Unit?
with "player" instead of "members[i].Unit" and without "for i=1, #members do" all it's work fine, but i want to do it work for party/raid also.Code:if PQR_SpellAvailable(116781) and IsSpellKnown(116781) then for i=1, #members do if not UnitIsDeadOrGhost(members[i].Unit) and IsSpellInRange(GetSpellInfo(116781), members[i].Unit) == 1 then local BuffList = { 116781, -- monk 17007, -- feral druid 61316, -- mage 1459, -- mage 126309, -- hunter's pet 126373, -- hunter's pet 24604 -- hunter's pet } local b = 0 for j=1, #BuffList do if UnitBuffID(members[i].Unit, BuffList[j]) ~= nil then b = b + 1 end end if b == 0 then PQR_CustomTarget = members[i].Unit return true end end end end
And how to use extrabutton on Heroic: Council of Elders with same code(check raid members debuff(count), and use it on them)?
Last edited by WWF; 03-29-2013 at 09:35 AM.
Anyone still got cokx dk pvp profiles?? can't find it anywhere.
Howdy folks!
I have never been more appreciative of what the profile coders do for the community than after I started adjusting profiles to my playstyle. Unfortunately, I am now stuck and am hoping for some assistance.
What I am trying to do is alternate the use of my mitigating cooldowns with the result of only having one up at a time. I can set the first two without trouble, but when I try to set a condition that specifies more than one ability, then it never casts or uses the trinket. For example the following works fine(the PlayerHP value is only set to 100 for ease of testing):
The problem is that use the trinket with Guardian of the Ancient Kings. When I attempt to add code to keep the trinket from firing off when GOAK or Divine Prot is up The trinket never fires:Code:-- Divne Protection if PlayerHP <= 100 and PQR_SpellAvailable(498) then CastSpellByName(GetSpellInfo(498) -- Guardian of Ancient Kings elseif PlayerHP <= 100 and PQR_SpellAvailable(86669) and not PQR_SpellAvailable(498) and not UnitBuffID("player", 498) then CastSpellByName(GetSpellInfo(86669)) end -- Trinket 1 if PlayerHP <= 100 and GetInventoryItemCooldown("player",13) == 0 and not PQR_SpellAvailable(498) and not unitBuffID "player", (498) then UseInventoryItem(13)
I am sure I have missed something quite simple. Any help would be most appreciative!Code:if PlayerHP <= 100 and GetInventoryItemCooldown("player",13) == 0 and not PQR_SpellAvailable(498) and not unitBuffID "player", (498) and not PQR_SpellAvailable(86669) and not UnitBuffID("player", 86669) then UseInventoryItem(13)
Hey Avery, I found a Fix to the Mass Exo glyph not working.
put this under the HaveGlyph() function.
then go through the profile and replace all of the 879s with exoIDPHP Code:
exoID = 879
if HaveGlyph(122028) then
exoID = 122032
end
Heres the fixed profile.
https://dl.dropbox.com/u/34600079/retfix.zip
WoW LUA Script Developer
Need Something Custom? WarmaneScripts.com
Skype - grapejuice111
hi guys some1 have problem with pqr? I have offset 16769 seems work normal but i cant start rotationAny help pls?
Hey, you seem to have a typo with your brackets:
Don't know if it'll do the trick, but never hurts to check this.Code:not unitBuffID "player", (498)