[BETA] PQRotation - an automated ability priority queue. menu

Shout-Out

User Tag List

Page 290 of 731 FirstFirst ... 190240286287288289290291292293294340390 ... LastLast
Results 4,336 to 4,350 of 10955
  1. #4336
    Techz's Avatar Member
    Reputation
    2
    Join Date
    Aug 2009
    Posts
    160
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickmydog View Post
    I tried

    Code:
    if UnitBuffID("player", 13165) == nil 
    then  CastSpellByID(13165, "player")
    end
    Which is basically the same thing, and yes it works. Awesome thanks for the help. Could you look into the Kill Command question?

    Hmm I should change my cobra and steady shot codes to check for movement and then switch to fox. No need to switch to aspect of the fox for other abilities while moving. This should make things smoother, great idea on the before LUA.
    This sounds great could someone send me this profile for my hunter? as it is a massive dps loss on fights

    Many Thanks

    [BETA] PQRotation - an automated ability priority queue.
  2. #4337
    Meatglue's Avatar Active Member
    Reputation
    16
    Join Date
    Aug 2011
    Posts
    248
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Cokx, or anyone else..On the cleanse cc ability I do not see where it would cleanse a fear. If I am overlooking something let me know but during rbg's I seem to get a lot of complaints that I am not cleansing fears. Also, I seem to have some pauses during rotation where I am not moving or healing. Sometimes I feel like I need to be moving to start the rotation up again. I am in the middle on Cokx's and Bubba's PvP Holy Paladin profiles atm.

    Code:
    function CheckMagic(unitid)
      local i = 1
      local buff,_,_,count,bufftype,duration = UnitDebuff(unitid, i)
      while buff do
        if bufftype == "Magic" or bufftype == "Poison" or bufftype == "Disease" then return true end
        i = i + 1;
        buff,_,_,count,bufftype,duration = UnitDebuff(unitid, i)
      end
    end
    
    
    PQR_CustomTarget = "player"
    PQR_CustomTargetTarget = "playertarget"
    local group = "party"
    local members = GetNumPartyMembers()
    
    if GetNumRaidMembers() > 0 then
      group = "raid"
      members = GetNumRaidMembers()
    end
    
    
    
    for i = 1, members, 1 do
      local member = group..tostring(i)
      local memberstarget = group..tostring(i).."target"
      if UnitInRange(member) 
      and UnitIsDeadOrGhost(member) == nil 
      and PQR_IsOutOfSight(member) == false
    then
        if CheckMagic(member) then PQR_CustomTarget = member end
        if CheckMagic(member) then PQR_CustomTargetTarget = memberstarget end
    end
    end
    
    
     if (UnitDebuffID(PQR_CustomTarget,49203) ~= nil or UnitDebuffID(PQR_CustomTarget,19386) ~= nil  or  UnitDebuffID(PQR_CustomTarget,3355) ~= nil  or  UnitDebuffID(PQR_CustomTarget,44572) ~= nil  or  UnitDebuffID(PQR_CustomTarget,118) ~= nil  or  UnitDebuffID(PQR_CustomTarget,82691) ~= nil  or  UnitDebuffID(PQR_CustomTarget,31661) ~= nil  or  UnitDebuffID(PQR_CustomTarget,853) ~= nil  or  UnitDebuffID(PQR_CustomTarget,20066) ~= nil  or  UnitDebuffID(PQR_CustomTarget,10326) ~= nil  or  UnitDebuffID(PQR_CustomTarget,605) ~= nil  or  UnitDebuffID(PQR_CustomTarget,64044) ~= nil  or  UnitDebuffID(PQR_CustomTarget,8122) ~= nil  or  UnitDebuffID(PQR_CustomTarget,9484) ~= nil  or  UnitDebuffID(PQR_CustomTarget,15487) ~= nil  or  UnitDebuffID(PQR_CustomTarget,6789) ~= nil  or  UnitDebuffID(PQR_CustomTarget,5782) ~= nil  or  UnitDebuffID(PQR_CustomTarget,5484) ~= nil  or  UnitDebuffID(PQR_CustomTarget,6358) ~= nil  or  UnitDebuffID(PQR_CustomTarget,30283) ~= nil  or  UnitDebuffID(PQR_CustomTarget,24259) ~= nil  or  UnitDebuffID(PQR_CustomTarget,31117) ~= nil  or  UnitDebuffID(PQR_CustomTarget,18498) ~= nil  or  UnitDebuffID(PQR_CustomTarget,33395)  ~= nil or  UnitDebuffID(PQR_CustomTarget,122)  ~= nil )
    and CheckMagic(PQR_CustomTarget) and UnitDebuffID(PQR_CustomTarget,30108) == nil then return true 
    end

  3. #4338
    bu_ba_911's Avatar Elite User
    Reputation
    552
    Join Date
    May 2006
    Posts
    1,638
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Meatglue View Post
    Cokx, or anyone else..On the cleanse cc ability I do not see where it would cleanse a fear. If I am overlooking something let me know but during rbg's I seem to get a lot of complaints that I am not cleansing fears. Also, I seem to have some pauses during rotation where I am not moving or healing. Sometimes I feel like I need to be moving to start the rotation up again. I am in the middle on Cokx's and Bubba's PvP Holy Paladin profiles atm.
    Fear is under the Magic Debuff type, so it should be dispelled just fine, however there is one thing you must ALWAYS consider.... when there is a warlock who is fearing.... there is probably dots flying around. and if the target has Unstable Affliction this will not dispel them ever.... so if they are complaining about fears not being dispelled and they have UA on them.... u can kindly tell them to wait patiently.... or my personal favorite in normal bg's.... "F*ck off chicken little or u get no more heals"

    however if it's not the case that they have fear on them but not UA.... then that is indeed an issue we must fix..... any more input from ur side?
    ^0^Team Nova's PQR NCC ^0^

    If you think someone did something good, take the time to show your appreciation!

  4. #4339
    GRB's Avatar Established Member CoreCoins Purchaser
    Reputation
    65
    Join Date
    Oct 2008
    Posts
    222
    Thanks G/R
    0/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by averykey View Post
    When I was testing the zealotry rotation, it never used exorcism or hammer of wrath as a filler, it would do more dps if it did, this priority for fillers: hand of light, if 2hp crusader first; if not up judgement, 2 templars, exorcism, hammer of wrath, judgement, holy wrath, consecration.

    For 2piece it would be, Fillers: hand of light, if 1hp crusader first; judgement if its up,(there is a gcd here(due to blizzard having to register judgement +1hp clientside, so anything past the 2 templars ex:exo,how then 2 templars, exorcism, hammer of wrath, judgement, holy wrath, consecration.
    Quoted from EJ:
    Code:
    Zealotry
    
    
    
    Zealotry provides a special circumstance. During Zealotry all CS earn 3 HP. Your rotation will become CS, TV, Filler, or CS, Filler, TV, as we still use 2 fillers between CS.
    
    With current values for HoW and Exo they may be used over a CS or TV during Zealotry (see priorities above). Continue to follow your core priority sequence in and out of cooldowns. Zealotry does not alter your priority sequence, it just gives you more TV to socket in there.
    
    Try to avoid use of Zealotry during AOE-cleave phases. Divine Storm does not produce 3 HP, so you would lose the benefit of this CD or lose the benefit of proper AOE attacks against available targets.
    So your right, will change the code and post the new profile.

    Ok new changes:
    -Will use HoW and Exo with zealotry
    -Now only will use AW when Zealotry is up, so it will always use both of them at same time.
    -LEFT ALT now pauses the rotation
    -Right Control will HoF
    -Now will use Zea and AW even if target have less then 5% hp
    -GoaK not used if target have less then 5%, since its a 5m CD.
    -Some other changes were made.

    Download:
    http://www.mediafire.com/download.php?g00tb1olfxggd71
    Last edited by GRB; 01-18-2012 at 03:19 PM.

  5. #4340
    Meatglue's Avatar Active Member
    Reputation
    16
    Join Date
    Aug 2011
    Posts
    248
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bu_ba_911 View Post
    Fear is under the Magic Debuff type, so it should be dispelled just fine, however there is one thing you must ALWAYS consider.... when there is a warlock who is fearing.... there is probably dots flying around. and if the target has Unstable Affliction this will not dispel them ever.... so if they are complaining about fears not being dispelled and they have UA on them.... u can kindly tell them to wait patiently.... or my personal favorite in normal bg's.... "F*ck off chicken little or u get no more heals"

    however if it's not the case that they have fear on them but not UA.... then that is indeed an issue we must fix..... any more input from ur side?
    haha, ya it's only the rbg's i care about. So are Cokx's cleanse abilities better than the ones in yours? I don't know which profile to use. lol atm I am using yours with his cc cleanse and his reg cleanse.

  6. #4341
    Jamsx1's Avatar Corporal
    Reputation
    7
    Join Date
    Oct 2011
    Posts
    27
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickmydog View Post
    Anyone with any experience with the Hunter profiles that are currently out will understand that they lose a significant amount of dps when any sort of movement is made while doing their instant shots. The profiles will all stay in Aspect of the Fox which loses a rather large amount of attack power.

    Is there a way to make instant shot abilities like Explosive Shot, Arcane Shot etc.. check if you have Aspect of the Hawk up, and if you do not cast Aspect of the Hawk and then fire the instant ability all within the same "ability" code? They are on different GCD but i've been wracking my brain for months now trying to work it out, and I have not seen any code in other class profiles that I could steal to do the same thing.

    This is especially important with the new patch coming up and Aspect of the Hawk will provide even more attack power.

    On a second note I have been trying to tweak the Kill Command ability to check for several things, but most of the time it just seems to break when I try to change my code. I want it to test for the following things;

    1. Pet is in range to Kill Command, if not in range return false.
    2. If Hunter is not in range to fire a shot it checks if pet is in range, and kill commands if it is
    3. If hunter has deterrence/ BOP up, check if pet is in range, and if it is kill commands
    4. If hunter has no LOS on his target, check if pet is in range and kill commands.
    5 If pet has no target return false

    Now I wanted to make sure that it check the hunter's target and the pet's target since they may be different. Has anyone got any ideas or suggestions on either of these issues?
    I can't wait to try a new MM profile by you as I still use your old Mm profile. It still out performs any of the newer ones by about 2k-3k dps. So again Ty for your and all other's effort in this PRQ project.

  7. #4342
    bu_ba_911's Avatar Elite User
    Reputation
    552
    Join Date
    May 2006
    Posts
    1,638
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Meatglue View Post
    haha, ya it's only the rbg's i care about. So are Cokx's cleanse abilities better than the ones in yours? I don't know which profile to use. lol atm I am using yours with his cc cleanse and his reg cleanse.
    for this particular thing maybe.... because i still haven't made a CC only cleanse that takes priority lol.....

    my reg cleanse and cokx's reg cleanse are the same, before i quit i started making a cleanse that was like his so without feeling a hiny of sympathy i copied his code letter for letter and implemented it into mine (naming the cleanse after him)

    i can throw a CC cleanse together real quick after this raid is over
    ^0^Team Nova's PQR NCC ^0^

    If you think someone did something good, take the time to show your appreciation!

  8. #4343
    GRB's Avatar Established Member CoreCoins Purchaser
    Reputation
    65
    Join Date
    Oct 2008
    Posts
    222
    Thanks G/R
    0/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone having FPS issues with my RET_PALLY profile?

  9. #4344
    ace99ro's Avatar Sergeant Major
    Reputation
    9
    Join Date
    Dec 2011
    Posts
    173
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by GRB View Post
    Quoted from EJ:
    Code:
    Zealotry
    
    
    
    Zealotry provides a special circumstance. During Zealotry all CS earn 3 HP. Your rotation will become CS, TV, Filler, or CS, Filler, TV, as we still use 2 fillers between CS.
    
    With current values for HoW and Exo they may be used over a CS or TV during Zealotry (see priorities above). Continue to follow your core priority sequence in and out of cooldowns. Zealotry does not alter your priority sequence, it just gives you more TV to socket in there.
    
    Try to avoid use of Zealotry during AOE-cleave phases. Divine Storm does not produce 3 HP, so you would lose the benefit of this CD or lose the benefit of proper AOE attacks against available targets.
    So your right, will change the code and post the new profile.

    Ok new changes:
    -Will use HoW and Exo with zealotry
    -Now only will use AW when Zealotry is up, so it will always use both of them at same time.
    -LEFT ALT now pauses the rotation
    -Right Control will HoF
    -Now will use Zea and AW even if target have less then 5% hp
    -GoaK not used if target have less then 5%, since its a 5m CD.
    -Some other changes were made.

    Download:
    RET_PVE_PALLY.rar
    looks great on paper but for some reason it does only 24.500 dps on single target dummy using 2 golembloods

  10. #4345
    GRB's Avatar Established Member CoreCoins Purchaser
    Reputation
    65
    Join Date
    Oct 2008
    Posts
    222
    Thanks G/R
    0/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ace99ro View Post
    looks great on paper but for some reason it does only 24.500 dps on single target dummy using 2 golembloods
    doing 26k ish here.

  11. #4346
    ace99ro's Avatar Sergeant Major
    Reputation
    9
    Join Date
    Dec 2011
    Posts
    173
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    gonna test it on LFR tonite ... maybe i had bad procs that try

  12. #4347
    Testy9's Avatar Member
    Reputation
    2
    Join Date
    Apr 2008
    Posts
    41
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Holy Paladin - I'm using Lofty's hpally profile, the profile heals other people without any problem but it never heals myself. WHy? here's the code:

    Code:
    if UnitExists("target")
      and UnitIsDead("target") == nil
      and UnitIsFriend("player", "target")
      and UnitCanCooperate("player","target")
      then PQR_CustomTarget = "target"
              PQR_CustomTargetHP = 100 * UnitHealth("target") / UnitHealthMax("target")
    else
    
    PQR_CustomTarget = "player"
    PQR_CustomTargetHP = 100 * UnitHealth("player") / UnitHealthMax("player")
    local group = "party"
    local members = GetNumPartyMembers()
    lowhpmembers = 0
    local lowest = 100
    
    if GetNumRaidMembers() > 0 then
      group = "raid"
      members = GetNumRaidMembers()
    end
    
    for i = 1, members, 1 do
      local member = group..tostring(i)
      local memberhp = 100 * UnitHealth(member) / UnitHealthMax(member)
      if UnitInRange(member)
      and UnitIsFriend("player", member)
      and UnitIsDeadOrGhost(member) == nil  then
        if UnitGroupRolesAssigned(member) == "TANK" then memberhp = memberhp - 1 end
        if UnitThreatSituation(member) == 3 then memberhp = memberhp - 3 end
        if UnitBuffID(member, 53563) ~= nil then memberhp = memberhp + 7 end
        if memberhp < 70 then lowhpmembers = lowhpmembers +1 end
        if memberhp < lowest then
          PQR_CustomTarget = member
          lowest = memberhp
          PQR_CustomTargetHP = 100 * UnitHealth(PQR_CustomTarget) / UnitHealthMax(PQR_CustomTarget)
        end
      end
    end
    
    end
    I don't know who coded that orginally, so credits go to him/her.

    I'v tried replacing the above code with Sheuron's automatic targetting code but it didn't work for me (it does nothing). Here's his code:

    Code:
    if not xeroninit then
    
      function SpecialAggro(t)
        local mob = { "Training Dummy", "Raider's Training Dummy", "Twisted Spirit", "Amani´shi Hatcher", "Hakkar's Chains", 
                              "Exposed Head of Magmaw", "Battleground Demolisher", "Ozumat", "Right Foot", "Left Foot", 
                              "Icy Tomb", "Risen Ghoul", "Mana Void", "Burning Tendons", "Wing Tentacle", "Arm Tentacle", 
                              "Twilight Assault Drake", "Goriona", "Ice Tomb" }
        for _,v in ipairs(mob) do if UnitName(t) == v then return true end end
      end
    
      function ImmuneTarget(t) 
        local buff = { 642, 45438, 31224, 23920, 33786, 19263, 97417, 97977, 102915, 100686, 105784, 74938 }
        for _,v in ipairs(buff) do if UnitBuffID(t,v) then return true end end
      end
    
      function HoldCooldown(cd)
        if GetMinimapZoneText() == "Deathwing" and UnitName("target") ~= "Burning Tendons" and cd >= 1
        then return true end
        if UnitName("target") == "Warlord Zon'ozz" and not UnitDebuffID("target",104031) and cd >= 3 
        then return true end
        if UnitName("boss1") == "Alysrazor" and not UnitDebuffID("boss1",99432) and cd >= 3 
        then return true end
      end
    
      print("Sheuron initialized, ver: \124cFFFFE6402012.01.05")
      xeroninit = true
    
    end
    
    if IsLeftAltKeyDown() 
    or IsMounted()
    or SpellIsTargeting()
    or UnitBuffID("player",80169)
    or UnitBuffID("player",87959)
    or UnitChannelInfo("player") 
    then return true end
    Also, is it possible to not to heal a person that has the Deep Corruption debuff? This is Heroic Yor'sahj from DS. I can't heal ppl that have the debuff or they die =/

  13. #4348
    imdasandman's Avatar Contributor
    Reputation
    206
    Join Date
    Feb 2011
    Posts
    965
    Thanks G/R
    9/4
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ace99ro View Post
    looks great on paper but for some reason it does only 24.500 dps on single target dummy using 2 golembloods
    What is your ilvl/weapon?

    Reason I ask this is a few days ago an ilvl 387 yet pally was on here saying he was only hitting 25-27k fps on the dummies.

    Here is what I am gonna say. Me as a frost dk with an ilvl of 398 and 2xHM moarcock's I do sustained about 31-32k dps on the raiding dummy but with all buffs and debuffs on ultrax I do 41k in a 10man setting. 47k in lfr.

    So dummies are OK for seeing improvements within the rotation but it should not be what should be reported for numbers.

    Go out, que for lfr, if you parse that shit like I do to see a better breakdown of what proc'd and when. I send profile makers links of my armory and my logs so they can see a different data set yo analyze.

    Anyways gl to y'all but I want to see numbers from lfr not dummies imo

    Sent from my SAMSUNG-SGH-I997 using Tapatalk
    My Frost/Unholy DK WoL ranking edits(4.3) and crystals Hunter Beta profiles-
    https://imdasandmandeathknight.googl...com/svn/trunk/
    Originally Posted by Valma View Post
    Oh sure. (: Plz,lord,rewrite my profile without "re-inventing a wheel".I'm really interested how would you do so.I even ready to eat my pants if yours will perform better in raids than mine

  14. #4349
    imdasandman's Avatar Contributor
    Reputation
    206
    Join Date
    Feb 2011
    Posts
    965
    Thanks G/R
    9/4
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Testy9 View Post
    Holy Paladin - I'm using Lofty's hpally profile, the profile heals other people without any problem but it never heals myself. WHy? here's the code:

    Code:
    if UnitExists("target")
      and UnitIsDead("target") == nil
      and UnitIsFriend("player", "target")
      and UnitCanCooperate("player","target")
      then PQR_CustomTarget = "target"
              PQR_CustomTargetHP = 100 * UnitHealth("target") / UnitHealthMax("target")
    else
    
    PQR_CustomTarget = "player"
    PQR_CustomTargetHP = 100 * UnitHealth("player") / UnitHealthMax("player")
    local group = "party"
    local members = GetNumPartyMembers()
    lowhpmembers = 0
    local lowest = 100
    
    if GetNumRaidMembers() > 0 then
      group = "raid"
      members = GetNumRaidMembers()
    end
    
    for i = 1, members, 1 do
      local member = group..tostring(i)
      local memberhp = 100 * UnitHealth(member) / UnitHealthMax(member)
      if UnitInRange(member)
      and UnitIsFriend("player", member)
      and UnitIsDeadOrGhost(member) == nil  then
        if UnitGroupRolesAssigned(member) == "TANK" then memberhp = memberhp - 1 end
        if UnitThreatSituation(member) == 3 then memberhp = memberhp - 3 end
        if UnitBuffID(member, 53563) ~= nil then memberhp = memberhp + 7 end
        if memberhp < 70 then lowhpmembers = lowhpmembers +1 end
        if memberhp < lowest then
          PQR_CustomTarget = member
          lowest = memberhp
          PQR_CustomTargetHP = 100 * UnitHealth(PQR_CustomTarget) / UnitHealthMax(PQR_CustomTarget)
        end
      end
    end
    
    end
    I don't know who coded that orginally, so credits go to him/her.

    I'v tried replacing the above code with Sheuron's automatic targetting code but it didn't work for me (it does nothing). Here's his code:

    Code:
    if not xeroninit then
    
      function SpecialAggro(t)
        local mob = { "Training Dummy", "Raider's Training Dummy", "Twisted Spirit", "Amani´shi Hatcher", "Hakkar's Chains", 
                              "Exposed Head of Magmaw", "Battleground Demolisher", "Ozumat", "Right Foot", "Left Foot", 
                              "Icy Tomb", "Risen Ghoul", "Mana Void", "Burning Tendons", "Wing Tentacle", "Arm Tentacle", 
                              "Twilight Assault Drake", "Goriona", "Ice Tomb" }
        for _,v in ipairs(mob) do if UnitName(t) == v then return true end end
      end
    
      function ImmuneTarget(t) 
        local buff = { 642, 45438, 31224, 23920, 33786, 19263, 97417, 97977, 102915, 100686, 105784, 74938 }
        for _,v in ipairs(buff) do if UnitBuffID(t,v) then return true end end
      end
    
      function HoldCooldown(cd)
        if GetMinimapZoneText() == "Deathwing" and UnitName("target") ~= "Burning Tendons" and cd >= 1
        then return true end
        if UnitName("target") == "Warlord Zon'ozz" and not UnitDebuffID("target",104031) and cd >= 3 
        then return true end
        if UnitName("boss1") == "Alysrazor" and not UnitDebuffID("boss1",99432) and cd >= 3 
        then return true end
      end
    
      print("Sheuron initialized, ver: \124cFFFFE6402012.01.05")
      xeroninit = true
    
    end
    
    if IsLeftAltKeyDown() 
    or IsMounted()
    or SpellIsTargeting()
    or UnitBuffID("player",80169)
    or UnitBuffID("player",87959)
    or UnitChannelInfo("player") 
    then return true end
    Also, is it possible to not to heal a person that has the Deep Corruption debuff? This is Heroic Yor'sahj from DS. I can't heal ppl that have the debuff or they die =/
    Pull decursing out of your rotation for that specific fight.

    Correction I was thinking of hm zonozz IMO. But what you van do is see what spells holy pallies can use on the purple oozes that does not add stacks and setup it as an alternative rotation you would switch to in that combo.

    Sent from my SAMSUNG-SGH-I997 using Tapatalk
    Last edited by imdasandman; 01-18-2012 at 05:30 PM.
    My Frost/Unholy DK WoL ranking edits(4.3) and crystals Hunter Beta profiles-
    https://imdasandmandeathknight.googl...com/svn/trunk/
    Originally Posted by Valma View Post
    Oh sure. (: Plz,lord,rewrite my profile without "re-inventing a wheel".I'm really interested how would you do so.I even ready to eat my pants if yours will perform better in raids than mine

  15. #4350
    bu_ba_911's Avatar Elite User
    Reputation
    552
    Join Date
    May 2006
    Posts
    1,638
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Testy9 View Post
    Holy Paladin - I'm using Lofty's hpally profile, the profile heals other people without any problem but it never heals myself. WHy? here's the code:

    Code:
    if UnitExists("target")
      and UnitIsDead("target") == nil
      and UnitIsFriend("player", "target")
      and UnitCanCooperate("player","target")
      then PQR_CustomTarget = "target"
              PQR_CustomTargetHP = 100 * UnitHealth("target") / UnitHealthMax("target")
    else
    
    PQR_CustomTarget = "player"
    PQR_CustomTargetHP = 100 * UnitHealth("player") / UnitHealthMax("player")
    local group = "party"
    local members = GetNumPartyMembers()
    lowhpmembers = 0
    local lowest = 100
    
    if GetNumRaidMembers() > 0 then
      group = "raid"
      members = GetNumRaidMembers()
    end
    
    for i = 1, members, 1 do
      local member = group..tostring(i)
      local memberhp = 100 * UnitHealth(member) / UnitHealthMax(member)
      if UnitInRange(member)
      and UnitIsFriend("player", member)
      and UnitIsDeadOrGhost(member) == nil  then
        if UnitGroupRolesAssigned(member) == "TANK" then memberhp = memberhp - 1 end
        if UnitThreatSituation(member) == 3 then memberhp = memberhp - 3 end
        if UnitBuffID(member, 53563) ~= nil then memberhp = memberhp + 7 end
        if memberhp < 70 then lowhpmembers = lowhpmembers +1 end
        if memberhp < lowest then
          PQR_CustomTarget = member
          lowest = memberhp
          PQR_CustomTargetHP = 100 * UnitHealth(PQR_CustomTarget) / UnitHealthMax(PQR_CustomTarget)
        end
      end
    end
    
    end
    I don't know who coded that orginally, so credits go to him/her.

    I'v tried replacing the above code with Sheuron's automatic targetting code but it didn't work for me (it does nothing). Here's his code:

    Code:
    if not xeroninit then
    
      function SpecialAggro(t)
        local mob = { "Training Dummy", "Raider's Training Dummy", "Twisted Spirit", "Amani´shi Hatcher", "Hakkar's Chains", 
                              "Exposed Head of Magmaw", "Battleground Demolisher", "Ozumat", "Right Foot", "Left Foot", 
                              "Icy Tomb", "Risen Ghoul", "Mana Void", "Burning Tendons", "Wing Tentacle", "Arm Tentacle", 
                              "Twilight Assault Drake", "Goriona", "Ice Tomb" }
        for _,v in ipairs(mob) do if UnitName(t) == v then return true end end
      end
    
      function ImmuneTarget(t) 
        local buff = { 642, 45438, 31224, 23920, 33786, 19263, 97417, 97977, 102915, 100686, 105784, 74938 }
        for _,v in ipairs(buff) do if UnitBuffID(t,v) then return true end end
      end
    
      function HoldCooldown(cd)
        if GetMinimapZoneText() == "Deathwing" and UnitName("target") ~= "Burning Tendons" and cd >= 1
        then return true end
        if UnitName("target") == "Warlord Zon'ozz" and not UnitDebuffID("target",104031) and cd >= 3 
        then return true end
        if UnitName("boss1") == "Alysrazor" and not UnitDebuffID("boss1",99432) and cd >= 3 
        then return true end
      end
    
      print("Sheuron initialized, ver: \124cFFFFE6402012.01.05")
      xeroninit = true
    
    end
    
    if IsLeftAltKeyDown() 
    or IsMounted()
    or SpellIsTargeting()
    or UnitBuffID("player",80169)
    or UnitBuffID("player",87959)
    or UnitChannelInfo("player") 
    then return true end
    Also, is it possible to not to heal a person that has the Deep Corruption debuff? This is Heroic Yor'sahj from DS. I can't heal ppl that have the debuff or they die =/
    i would saw for the Deep Corruption part.... heal it yourself? i mean it's not that hard lol i can throw something into the targeting system if it's a necessity.... however for the holy paladin profile healing issue.... have u even tried my profile? mine used to have an issue like that, but with the updates it seems to have worked itself out
    ^0^Team Nova's PQR NCC ^0^

    If you think someone did something good, take the time to show your appreciation!

Similar Threads

  1. [Buying] Planetside 2 Priority Beta Key
    By isit123 in forum General MMO Buy Sell Trade
    Replies: 0
    Last Post: 07-21-2012, 06:34 AM
  2. [Selling] PLANETSIDE 2 Priority/Early Access Beta Account
    By Kabraxiss in forum General MMO Buy Sell Trade
    Replies: 0
    Last Post: 07-18-2012, 10:20 AM
  3. [Selling] Planetside 2 Priority/Early access Beta Keys
    By mrsluf in forum General MMO Buy Sell Trade
    Replies: 3
    Last Post: 07-17-2012, 04:45 AM
  4. [Selling] Planetside 2 Priority Access beta key codes
    By fatalefout in forum General MMO Buy Sell Trade
    Replies: 1
    Last Post: 06-26-2012, 04:08 PM
  5. [Bot] Automated dungeon queue / Justice Point leecher(Auto-it source)
    By s_e_a_n_66 in forum World of Warcraft Bots and Programs
    Replies: 36
    Last Post: 01-17-2011, 11:50 AM
All times are GMT -5. The time now is 09:03 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search