PQR - Rotation Bot menu

User Tag List

Page 310 of 779 FirstFirst ... 210260306307308309310311312313314360410 ... LastLast
Results 4,636 to 4,650 of 11681
  1. #4636
    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 Xelper View Post
    I didn't really work out Divine Purpose since I don't use it. Its supposed to be a wash vs Holy Avenger (what I use.) (within 1-2%)

    Sacred Shield is the very last ability in the rotation, and Skip Unknown is set to True... so even if Skip Unknown is broken (is it?) it wont matter if it tries to cast it.

    Yes, the delay list stops the rotation for 1 second if it notices the spell trying to be cast by the player. You shouldn't use a delay for any automated abilities. If the spell is cast successfully the delay is ended early and the rotation resumes. You need to setup the delay list the same way I do (using PQR_RotationStarted variable) because the delay list is cleared on rotation change.
    PHP Code:
    if PQR_RotationStarted == true then
        
    -- Should be reloaded every time you reload Profile (No more needing to /rl)
        
    PQR_RotationStarted false

    -- Variables
    PQR_ResetMovementTime 
    0.3
    PQR_SpellAvailableTime 
    = ((select(3,GetNetStats()) + select(4,GetNetStats())) / 1000)

    -- 
    Delays
    PQR_AddToSpellDelayList
    (64201) --Divine Shield
    PQR_AddToSpellDelayList
    (85301) --Hammer of Justice
    PQR_AddToSpellDelayList
    (694001) --Hand of Sacrifice
    PQR_AddToSpellDelayList
    (104401) --Hand of Freedom
    PQR_AddToSpellDelayList
    (2006601) --Repentance
    PQR_AddToSpellDelayList
    (102201) --Hand of Protection
    PQR_AddToSpellDelayList
    (79634581461) --Golem's Strength (spellID, itemID, delay)
    PQR_AddToSpellDelayList(105706, 76095, 1) -- Potion of Mogu Power

        if PQR_LoadLua ~= nil then
            -- Load Data File
            if PQR_LoadLua("PQR_Avery_Data.lua") == false then 
                PQR_WriteToChat("You are missing PQR_Avery_Data.lua. Rotation has been stopped.", "Error")
                PQR_StopRotation()
                return true
            end
        end
    end 
    This is what I have right now; I saw you still had the latency changer, does this replace it correctly?
    PHP Code:
    PQR_SpellAvailableTime = ((select(3,GetNetStats()) + select(4,GetNetStats())) / 1000

    Originally Posted by kickmydog View Post
    Anyone have some good code for the Crossing Over debuff from the third boss in Vaults?

    [PHP]--crossed over Gara'jal the Spiritbender
    local crossedover = select(7,UnitDebuffID("player",116161))
    if crossedove and crossedove - GetTime() < 1.5 then RunMacroText("/click ExtraActionButton1") end[PHP]

    this doesn't seem to be working.
    I just read up on the fight, when do you hit the button? Icy-veins doesn't have any info on it.

    nvm, just found an id for the button? http://www.wowdb.com/spells/120715-return-soul
    you hit the button to return from the spirit realm? from what I read, you need to be fully healed before pressing the button so something like.

    http://www.wowdb.com/spells/116272-banishment

    --Banished
    if select(7,UnitDebuffID("player", 116272)) then
    if (100 * UnitHealth("player") / UnitHealthMax("player")) == 100 then
    RunMacroText("/click ExtraActionButton1")
    end
    end
    Last edited by averykey; 10-04-2012 at 10:11 PM.
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

    PQR - Rotation Bot
  2. #4637
    bambam922's Avatar Member
    Reputation
    14
    Join Date
    Jan 2007
    Posts
    75
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Xelper, has there ever been a fix for ret paladins spam casting their seal?

  3. #4638
    kickmydog's Avatar Contributor
    Reputation
    257
    Join Date
    Jul 2011
    Posts
    635
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I think i fixed it, had some typos.
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/422388-kickmydog-bm-mm-sv-hunter-profiles.html#post2793017

  4. #4639
    me28791's Avatar Member
    Reputation
    10
    Join Date
    Jul 2011
    Posts
    90
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Kinkeh View Post
    Try this:
    Code:
    local combat = UnitAffectingCombat("player")
    local amifishy = UnitBuffID("player",125167)
    
    if not combat and amifishy ~= nil then
       return true
    end
    sorry been away for a day or so, is still the same hmmm I will have to play around with it a bit so see what the issue is (more then likely me)

    thanks for that as well

  5. #4640
    Sovietbobcat's Avatar Corporal
    Reputation
    1
    Join Date
    May 2012
    Posts
    29
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ace99ro View Post
    all profiles HANG when multiple debuffs are up and it hangs on spamming dispell - problem is dispell now has 8 sec cd - remove the dispell from the rotation and it will work fine
    It is not a Dispell, but a buff.

    Unleash Elements
    Instant 15 sec cooldown
    Focuses the elemental force imbued in the Shaman's weaponry, with the concentrated effects depending on the enchantment unleashed.

    Eg,Resto you would use * Earthliving Weapon: Heals the target and buffs the Shaman's next direct heal by 20%.

    I have not been able to work it right yet, so I have just removed it from rotation and manually adding it on fights when required.

  6. #4641
    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)
    trying to figure out how to fish with pqr, anyone want to help

    current code, just trying to work out everything I need.

    PHP Code:
    local FISHING_IDS = { 131474131490131476 }

    local gotloot GetNumLootItems()
    local FISHING_BOBBER = { "FishingBobber""Bobber""Fishing Bobber""Fishing_Bobber" } --unsure of name or idlol


    if fishing == nil 
    and not UnitAffectingCombat("player"
    and 
    GetUnitSpeed("player") == 
    and not UnitCastingInfo("player"
    and 
    gotloot == 0 then 
    RunMacroText
    ("/cast Fishing")

    elseif 
    fishing == GetSpellInfo(FISHING_IDSthen
        
    for _,v in ipairs(FISHING_BOBBER) do InteractUnit(vend end
     
    if gotloot 0 then for 1,gotloot do LootSlot(iend end
    end 
    I would like to make this work for all languages once it's finished, I just need the ids, so if anyone has bobber ids or any ids at all, I would appreciate and rep+ for them.



    edit:

    Originally Posted by Sovietbobcat View Post
    It is not a Dispell, but a buff.

    Unleash Elements
    Instant 15 sec cooldown
    Focuses the elemental force imbued in the Shaman's weaponry, with the concentrated effects depending on the enchantment unleashed.

    Eg,Resto you would use * Earthliving Weapon: Heals the target and buffs the Shaman's next direct heal by 20%.

    I have not been able to work it right yet, so I have just removed it from rotation and manually adding it on fights when required.
    post the ability code, I'll see if I can help at all
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

  7. #4642
    sgdevoid's Avatar Sergeant
    Reputation
    2
    Join Date
    Jan 2012
    Posts
    34
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone make a decent Monk Windwalker profile? Was using one that was posted a while ago but seems like its pretty buggy as I level higher.

  8. #4643
    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 sgdevoid View Post
    Anyone make a decent Monk Windwalker profile? Was using one that was posted a while ago but seems like its pretty buggy as I level higher.
    use the one on Team Nova's SVN
    ^0^Team Nova's PQR NCC ^0^

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

  9. #4644
    yourson's Avatar Member
    Reputation
    4
    Join Date
    Feb 2012
    Posts
    149
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickmydog View Post
    I think i fixed it, had some typos.
    Can you or anyone post complete and working code for Gara'jal the Spiritbender?

  10. #4645
    cahe's Avatar Member
    Reputation
    3
    Join Date
    Aug 2012
    Posts
    88
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bu_ba_911 View Post
    if u have dropbox ill let u be the last person to try out my WIP resto druid.... only heard good things so far
    Yes i have dropbox Send adress on PM
    Last edited by cahe; 10-05-2012 at 03:14 AM.

  11. #4646
    snowhawk's Avatar Contributor
    Reputation
    150
    Join Date
    Aug 2008
    Posts
    239
    Thanks G/R
    42/133
    Trade Feedback
    0 (0%)
    Mentioned
    14 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by averykey View Post
    I would like to make this work for all languages once it's finished, I just need the ids, so if anyone has bobber ids or any ids at all, I would appreciate and rep+ for them.
    Fishing ID I've been using is 131474 and the bobber ID is 35591

  12. #4647
    KleskReaver's Avatar Sergeant
    Reputation
    9
    Join Date
    Jul 2012
    Posts
    39
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Okay guys, Since everyone is so awesome and PQR is amazing I thought I'd put my 2 cents in :)

    I haven't seen anything from [Blinded] for a while, so I've updated the Assassination portion of his Rogue profile to reflect current 5.0.5 rotation and ability use:

    Attachment 10676 Assassination Rogue Attachment 10677
    All credit goes to [Blinded] for the original code/rotation
    :Required Talents:

    Attachment 10679

    :Info:

    • Removed "Ambush" from the rotation and uses "Mutilate" as your "Stealth Opener" (which is why you need "Shadow Focus" instead of "Subterfuge")
    • If you're in combat and you do not have a target, it will autotarget the nearest enemy (good for multi-targets in range after your 1st target dies)
    • Uses "Mutilate" and "Dispatch" as your combo point builders, "Dispatch" with "Blindside" procs and when enemy is < 35% health
    • Keeps "Rupture" up on your target
    • Keeps "Slice and Dice" up on you
    • Uses "Envenom" at >= 5 combo points or when "Slice and Dice" has < 3 seconds left (To gain the 36 second SnD buff)
    • Should be "Anticipation" Talent-ready as the code supports having more than 5 combo points (not tested as my rogue is not yet level 90)

    :More Info:

    This is a PvE only profile

    "Left Control" key switches between AOE and single target modes
    AOE mode will spam "Fan of Knives" at < 5 combo points and uses "Crimson Tempest" at >= 5 combo points

    There is code in the profile to use "Right Shift" as a toggle for your Cooldowns ("Vendetta", "Vanish" and "Preparation"). I have removed these from the rotation as I prefer to manage these myself, If you would like to have them used automatically you'll just need to add them back into the "Current Abilities" list in the "Rotation Editor"

    I also prefer "Shadowstep" over "Preparation" as Assassination is not as Stealth-heavy as Subtlety

    Hold "Left Shift" to pause rotation

    :"To Do" List:

    • Add "Redirect" support
    • Maybe add a Combat rotation (not interested in Subtlety)

    :Download:

    https://rapidshare.com/files/2205547..._Rogue_1.0.rar

  13. #4648
    derfred's Avatar Member
    Reputation
    2
    Join Date
    Oct 2007
    Posts
    82
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Tried both Xelpers and Averekeys Ret-Paladin profiles but none of them seems to work properly, anyone got an easy fix for this (maybe some small line of code that just needs editing)?

  14. #4649
    PowerUP Boosts's Avatar Active Member
    CoreCoins Purchaser
    Reputation
    43
    Join Date
    Oct 2009
    Posts
    239
    Thanks G/R
    0/1
    Trade Feedback
    11 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can someone point me somewhere to get Mage PVE profile?

  15. #4650
    Sovietbobcat's Avatar Corporal
    Reputation
    1
    Join Date
    May 2012
    Posts
    29
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by derfred View Post
    Tried both Xelpers and Averekeys Ret-Paladin profiles but none of them seems to work properly, anyone got an easy fix for this (maybe some small line of code that just needs editing)?
    Use Dominium's Ret Pvp profile, It has solo'd every mob/group/elite/rare in Panda Land -World Raid bosses.

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 06:02 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