PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 103 of 779 FirstFirst ... 35399100101102103104105106107153203603 ... LastLast
Results 1,531 to 1,545 of 11681
  1. #1531
    averykey's Avatar Contributor
    Reputation
    158
    Join Date
    Dec 2011
    Posts
    448
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ralphiuss View Post
    Anyone using Bu_Ba holy paladin profile in a heroic DS environment? As much as I love it, and it being mana efficient...it's too efficient. I'm being blown away by my other healing partners.

    Pretty much being told to close the gap or I probably need to find a different group...Even though we're 8/8HM...bastards...lol
    In the master settings file you can change when it heals, I would set it to something like this.

    Code:
    --------------------------
    -- Raid Healing Settings
    --------------------------
    Nova_Spell[PQ_HolyLight].targetHealth = 96
    Nova_Spell[PQ_HolyLight].check = true
    Nova_Spell[PQ_DivineLight].targetHealth = 70
    Nova_Spell[PQ_DivineLight].checkArena = false
    Nova_Spell[PQ_FlashofLight].targetHealth = 35
    Nova_Spell[PQ_FlashofLight].whileMovingHealth = 40
    Nova_Spell[PQ_FlashofLight].checkArena = false
    Nova_Spell[PQ_LightofDawn].check = true
    Nova_Spell[PQ_HolyRadiance].check = true
    Nova_Spell[PQ_HolyRadiance].targetHealth = 90
    Nova_Spell[PQ_HolyShock].targetHealth = 99
    Nova_Spell[PQ_WordofGlory].targetHealth = 85
    Nova_Spell[PQ_CrusaderStrike].check = true
    Nova_Spell[PQ_LayonHands].targetHealth = 20
    
    ---------------------------
    -- Raid Overhealing Settings
    ---------------------------
    
    Nova_Spell[PQ_HolyLight].overHealLimit = 110
    Nova_Spell[PQ_DivineLight].overHealthLimit = 120
    Nova_Spell[PQ_FlashofLight].overHealLimit = 105
    You will probably need to tweak it a little, test it in dungeons.

    Congrats on finding a guild



    edit:
    Can I put parentheses on 2 conditions if I want those as one?
    if UnitName("target") == "Ultraxion" or (LustEffect == 1 and Zealotry ~= nil) then
    return false
    end
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

    PQR - Rotation Bot
  2. #1532
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,036
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by averykey View Post
    In the master settings file you can change when it heals, I would set it to something like this.

    Code:
    --------------------------
    -- Raid Healing Settings
    --------------------------
    Nova_Spell[PQ_HolyLight].targetHealth = 96
    Nova_Spell[PQ_HolyLight].check = true
    Nova_Spell[PQ_DivineLight].targetHealth = 70
    Nova_Spell[PQ_DivineLight].checkArena = false
    Nova_Spell[PQ_FlashofLight].targetHealth = 35
    Nova_Spell[PQ_FlashofLight].whileMovingHealth = 40
    Nova_Spell[PQ_FlashofLight].checkArena = false
    Nova_Spell[PQ_LightofDawn].check = true
    Nova_Spell[PQ_HolyRadiance].check = true
    Nova_Spell[PQ_HolyRadiance].targetHealth = 90
    Nova_Spell[PQ_HolyShock].targetHealth = 99
    Nova_Spell[PQ_WordofGlory].targetHealth = 85
    Nova_Spell[PQ_CrusaderStrike].check = true
    Nova_Spell[PQ_LayonHands].targetHealth = 20
    
    ---------------------------
    -- Raid Overhealing Settings
    ---------------------------
    
    Nova_Spell[PQ_HolyLight].overHealLimit = 110
    Nova_Spell[PQ_DivineLight].overHealthLimit = 120
    Nova_Spell[PQ_FlashofLight].overHealLimit = 105
    You will probably need to tweak it a little, test it in dungeons.

    Congrats on finding a guild



    edit:
    Can I put parentheses on 2 conditions if I want those as one?
    if UnitName("target") == "Ultraxion" or (LustEffect == 1 and Zealotry ~= nil) then
    return false
    end
    don't need the () around it. 'or' has a higher priority than 'and' so as an example:

    if a and b and c or a and c then return true end

    Please if someone helped you donate rep to them.

  3. #1533
    averykey's Avatar Contributor
    Reputation
    158
    Join Date
    Dec 2011
    Posts
    448
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crystal_tech View Post
    don't need the () around it. 'or' has a higher priority than 'and' so as an example:

    if a and b and c or a and c then return true end
    So if I use or, they will be considered 2 separate conditions?
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

  4. #1534
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,036
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    no better example
    -- EnemyHP and lCtrl are var names given in my profiles lCtrl = IsLeftCtrlKeyDown() and EnemyHP = 100* UnitHealth("target") / UnitHealthMax("target")

    if EnemyHP < 20 or lCtrl then
    return true
    elseif EnemyHP >20 then
    return false
    end
    Last edited by crystal_tech; 07-16-2012 at 09:51 PM.

    Please if someone helped you donate rep to them.

  5. #1535
    averykey's Avatar Contributor
    Reputation
    158
    Join Date
    Dec 2011
    Posts
    448
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crystal_tech View Post
    no better example
    -- EnemyHP and lCtrl are var names given in my profiles lCtrl = IsLeftCtrlKeyDown() and EnemyHP = 100* UnitHealth("target") / UnitHealthMax("target")

    if EnemyHP < 20 or lCtrl then
    return true
    elseif EnemyHP >20 then
    return false
    end
    If either condition is met it returns false, what I want to do is make (LustEffect == 1 and Zealotry ~= nil) 1 condition, will parenthesis do that?
    Or is LustEffect == 1 and Zealotry ~= nil counted as 1 condition since its on the other side of "or".


    edit:

    Couldn't you just do

    if EnemyHP < 20 or lCtrl then
    return true
    else
    return false
    end

    or

    if EnemyHP < 20 or lCtrl then
    return true end

    Since it will only return true during those conditions.

    edit2: Will this work?

    if UnitName("target") == "Ultraxion" or LustEffect == 1 and Zealotry ~= nil then
    return false
    elseif EnemyExists and PlayerCombat then
    if isMoving == false and PlayerMana >= 64 then
    return true end end end
    Last edited by averykey; 07-16-2012 at 10:39 PM.
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

  6. #1536
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,036
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by averykey View Post
    If either condition is met it returns false, what I want to do is make (LustEffect == 1 and Zealotry ~= nil) 1 condition, will parenthesis do that?
    Or is LustEffect == 1 and Zealotry ~= nil counted as 1 condition since its on the other side of "or".


    edit:

    Couldn't you just do

    if EnemyHP < 20 or lCtrl then
    return true
    else
    return false
    end

    or

    if EnemyHP < 20 or lCtrl then
    return true end

    Since it will only return true during those conditions.

    edit2: Will this work?

    if UnitName("target") == "Ultraxion" or LustEffect == 1 and Zealotry ~= nil then
    return false
    elseif EnemyExists and PlayerCombat then
    if isMoving == false and PlayerMana >= 64 then
    return true end end end
    for isMoving just put

    if not isMoving and PlayerMana >= 64 then

    id write it like this
    Code:
    if EnemyExists and PlayerCombat then
         -- I don't like using UnitName due to it limiting it to the client you play (english string won't work say on a rus game client)
         -- I'd use my EnemyID and compare it to Ultras id
         -- The addon called libBossID from curse has all the boss ids in the lua file just open it in notepad and find the boss
        if UnitName("target") == "Ultraxion" or LustEffect == 1 and Zealotry ~= nil then
              return false
        end
    elseif not isMoving and PlayerMana >= 64 then
         return true
    end

    Please if someone helped you donate rep to them.

  7. #1537
    averykey's Avatar Contributor
    Reputation
    158
    Join Date
    Dec 2011
    Posts
    448
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If anyone wants

    Code:
    local PlayerCombat = UnitAffectingCombat("player")
    local PlayerThreat = UnitThreatSituation("player", "target")
    local EnemyExists = UnitExists("target")
    local Frostflake = UnitBuffID("player", 109325)
    local FrostflakeSnare = UnitBuffID("player", 109337)
    
    --Hand of Freedom
    if PlayerCombat then
    if Frostflake or FrostflakeSnare then
    if not PQR_SpellAvailable(1044) then
    CastSpellByID(4987,"player") 
    else CastSpellByID(1044,"player") end end end
    
    --Hand of Salvation
    if EnemyExists and PlayerCombat then
    if PlayerThreat == 3 and PQR_SpellAvailable(1038) then
    CastSpellByID(1038,"player") end end
    Should work, just put them together.



    edit: Will this work?

    local CrusaderStrike = GetSpellCooldown(35395)

    if CrusaderStrike - GetTime() <= 0.2 and CrusaderStrike - GetTime() > 0 then
    return true end

    I want to replace this wait code in my profile

    local crusaderStrikeStart, crusaderStrikeDuration = GetSpellCooldown(35395)
    local crusaderStrikeCD = crusaderStrikeStart - GetTime() + crusaderStrikeDuration
    local gcdSpell = PQR_GCDSpellID()
    local gcdStartTime, gcdDuration = GetSpellCooldown(gcdSpell)
    local gcdTimeLeft = gcdStartTime + gcdDuration - GetTime()
    if gcdTimeLeft < 0 then
    gcdTimeLeft = 0
    end
    crusaderStrikeCD = crusaderStrikeCD - gcdTimeLeft
    if crusaderStrikeCD < 0 then
    crusaderStrikeCD = 0
    end
    if crusaderStrikeCD < 0.2 and crusaderStrikeCD > 0 then
    return true
    end
    Last edited by averykey; 07-17-2012 at 02:02 AM.
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

  8. #1538
    averykey's Avatar Contributor
    Reputation
    158
    Join Date
    Dec 2011
    Posts
    448
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    AveryV3

    Notes:
    Left alt to skip hour of twlight.
    Left shift pauses the rotation.

    This uses cooldowns on Spine of Deathwing, this doesn't use cooldowns anywhere else.

    If you have the t11 set make a macro to equip it then pop goak+pot then equip your dps set again 2 seconds before pull.
    The best way to use cooldowns is Prepot - Wait till inquisition is up - GoAK wait 10 seconds to build up ancient fury - Zeal+AW+trinket.
    Save golemblood for second set of zeal/aw/trinket.
    If you have enginerring use the gloves 8 seconds into GoAK, Again when it comes off cooldown, it should be up for the next set of cds.

    Use this spec for hagara the stormbinder: Talent Calculator - World of Warcraft

    Use this spec for all other bosses.
    Talent Calculator - World of Warcraft

    Prime Glyphs:
    Glyph of Seal of Truth
    Glyph of Exorcism
    Glyph of Templar's Verdict

    Major Glyphs:
    Glyph of Hammer of Wrath
    Glyph of Consecration
    Glyph of the Ascetic Crusader

    Minor Glyphs:
    Glyph of Truth
    Glyph of Blessing of Might
    Glyph of Blessing of Kings


    Link:
    https://dl.dropbox.com/u/44039495/AveryV3.zip
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

  9. #1539
    Dimonoff's Avatar Master Sergeant
    Reputation
    12
    Join Date
    May 2012
    Posts
    96
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Still no new offsets for 15851 build? :confused:
    Today we will soon test a new raid ...

  10. #1540
    Cunnelly's Avatar Member
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Really need a PVP Hunter MM profile if anyone has one?

  11. #1541
    Dominium's Avatar Contributor
    Reputation
    124
    Join Date
    Dec 2011
    Posts
    389
    Thanks G/R
    0/1
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Avery, you are incredible. I got 33,5k DPS on a target dummy (using CDs) during a 20mln dmg done test on my ilvl 391 (!) pally wearing mainly pvp gear (!) and reforged into crit, not mastery (!).

  12. #1542
    lostinthewoodslol's Avatar Active Member The Coinmaster CoreCoins Purchaser
    Reputation
    74
    Join Date
    Aug 2011
    Posts
    222
    Thanks G/R
    12/6
    Trade Feedback
    15 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Dimonoff View Post
    Still no new offsets for 15851 build? :confused:
    Today we will soon test a new raid ...
    same, im scared that ive gotta think about what i have to press lol

  13. #1543
    paveley's Avatar Member
    Reputation
    4
    Join Date
    May 2010
    Posts
    85
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone using Averys latest ret profile get a framerate drop?. Mine goes from 60 to 40 using it, never had it happen with any other profile, great work nonetheless Avery ^^. Mayb worth to mentioning i have 12 gig ram, so i don't think it's a lack of memory issue.

  14. #1544
    Karmakilla's Avatar Member
    Reputation
    4
    Join Date
    Feb 2012
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Could someone help me with warlock spell:

    Bane of Havoc
    ID: 80240

    What I would like:
    Code to check Target that I have my mouse over for this buff, and if it's not on the target, cast it. (Edit: Cast it on mouseover target

    Thanks in advance
    Last edited by Karmakilla; 07-17-2012 at 11:03 AM.

  15. #1545
    deadpanstiffy's Avatar Knight-Lieutenant
    Reputation
    158
    Join Date
    Mar 2012
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by averykey View Post
    If anyone wants

    Code:
    local PlayerCombat = UnitAffectingCombat("player")
    local PlayerThreat = UnitThreatSituation("player", "target")
    local EnemyExists = UnitExists("target")
    local Frostflake = UnitBuffID("player", 109325)
    local FrostflakeSnare = UnitBuffID("player", 109337)
    
    --Hand of Freedom
    if PlayerCombat then
    if Frostflake or FrostflakeSnare then
    if not PQR_SpellAvailable(1044) then
    CastSpellByID(4987,"player") 
    else CastSpellByID(1044,"player") end end end
    
    --Hand of Salvation
    if EnemyExists and PlayerCombat then
    if PlayerThreat == 3 and PQR_SpellAvailable(1038) then
    CastSpellByID(1038,"player") end end
    Should work, just put them together.
    You can't just go around spam dispelling yourself, your raid will hate you leave ice patches everywhere. At least check for Hagara's water bubble.

Similar Threads

  1. [Bot] PQR PE Next Steps / Future of Rotation Botting
    By Chevrolet1 in forum World of Warcraft Bots and Programs
    Replies: 120
    Last Post: 10-21-2014, 11:47 AM
  2. [Bot] PQR - Rotation Bot
    By Xelper in forum World of Warcraft Bots and Programs
    Replies: 1738
    Last Post: 10-15-2014, 11:00 AM
  3. [Selling] 3 Lifetime Session Keys For Sale, Great for the PQR user looking for a rotation bot
    By cukiemunster in forum World of Warcraft Buy Sell Trade
    Replies: 13
    Last Post: 03-11-2014, 07:18 AM
  4. rotation bot leveling (PQR)
    By classdog in forum WoW Bots Questions & Requests
    Replies: 3
    Last Post: 09-17-2013, 06:13 PM
  5. [HELP] PQR Rotation Bot Profile Making
    By Missu in forum Programming
    Replies: 0
    Last Post: 10-22-2012, 06:27 AM
All times are GMT -5. The time now is 05:13 AM. 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