PQR - Rotation Bot menu

User Tag List

Page 306 of 779 FirstFirst ... 206256302303304305306307308309310356406 ... LastLast
Results 4,576 to 4,590 of 11681
  1. #4576
    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)
    Originally Posted by js1974 View Post
    Are you going to add Execution Sentence into the rotation or leave it out? It's top priority but I can see you doing it either way.

    As well I have tried a few different things for the double jeopardy and can't quite figure out a method to use it effectively. I tried focus target swapping but it just doesn't work properly but it would be nice to find a method to make it work properly. I'll keep working on mine as well to see if I can find a way around it.

    Also have you considered a toggle for AE sv ST instead of a full new rotation?

    Keep up the good work.
    I am not Avery however, get urself 2 locals, one for the duration of Censure on target and the other for Censure on focus (ofc first checking IF there is a focus target at all...) and then comparing them decide on which one to cast Judgement on. If censure on target duration < censure on focus then if judge is available cast it on the target, elseif censure on focus duration < censure on target then if judge is available cast judge on focus. Should work, ofc this is pseudo code

    Cheers

    PQR - Rotation Bot
  2. #4577
    chumii's Avatar Master Sergeant
    Reputation
    7
    Join Date
    Aug 2011
    Posts
    104
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there any good balance druid profile for leveling 85+ ?

  3. #4578
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,033
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just an update,

    I'm adding in some ability for world pvp for hunters and i refreshed the code a tad.
    Lock profiles are up in the air but I am working on them, abit slowly.
    still working with a donator about windwalker profile, I've recoded it and hes seeing 5k more dps than the verison on the svn.

    links will be updated shortly.

    Please if someone helped you donate rep to them.

  4. #4579
    Bgreen12's Avatar Banned
    Reputation
    32
    Join Date
    Aug 2012
    Posts
    128
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Any answers on this?

    Originally Posted by Bgreen12 View Post
    if its possible to add a function for number of enemy mobs in range like Enemy's(10) would return the number of mobs In a 10 yard radius from the player for example.. that way you could auto switch rotations without keydowns or switxh rotations

    Sent from my MB865 using Tapatalk 2

  5. #4580
    nertharul's Avatar Member
    Reputation
    3
    Join Date
    Apr 2010
    Posts
    72
    Thanks G/R
    1/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Bossqwerty View Post
    Hey guys I'm back and making PQR profiles, just released an early frost mage profile. Check it out and leave some feedback, I'm looking to make these as good as my warrior profiles.

    http://www.ownedcore.com/forums/worl...ml#post2526239 ([PQR] Bossqwerty's MOP Mage Profiles)
    ZOMG good to have u back BOSS ur AWSOME

  6. #4581
    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)
    For the life of me I cant get an single ability to check for a buff and recast an item if it isnt up maybe its I am to tired maybe someone can have a look?

    Code:
    local fishy = UnitBuffID("Player",125167)
    local inCombat = UnitAffectingCombat("Player")
    
    if inCombat == 1 and not fishy then
    RunMacroText("/use ancient pandaren fishing charm")
    end
    just checking if you have the buff and then if in combat so not sure whats up

  7. #4582
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,033
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by me28791 View Post
    For the life of me I cant get an single ability to check for a buff and recast an item if it isnt up maybe its I am to tired maybe someone can have a look?

    Code:
    local fishy = UnitBuffID("Player",125167)
    local inCombat = UnitAffectingCombat("Player")
    
    if inCombat == 1 and not fishy then
    RunMacroText("/use ancient pandaren fishing charm")
    end
    just checking if you have the buff and then if in combat so not sure whats up
    lua is case sensitive, try using player instead of Player

    Please if someone helped you donate rep to them.

  8. #4583
    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)
    thanks will give it a go when servers get up

    hmm nope still the same
    Last edited by me28791; 10-03-2012 at 12:37 PM.

  9. #4584
    Bgreen12's Avatar Banned
    Reputation
    32
    Join Date
    Aug 2012
    Posts
    128
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by me28791 View Post
    thanks will give it a go when servers get up

    hmm nope still the same
    Prob because you're checking for combat before you attempt to attach the fishing charm. Should be more like if not UnitAffectingCombat("player") and not fishy then...

  10. #4585
    Kinkeh's Avatar Established Member
    Reputation
    243
    Join Date
    Jan 2012
    Posts
    450
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by me28791 View Post
    thanks will give it a go when servers get up

    hmm nope still the same
    Try this:
    Code:
    local combat = UnitAffectingCombat("player")
    local amifishy = UnitBuffID("player",125167)
    
    if not combat and amifishy ~= nil then
       return true
    end

  11. #4586
    phasechange's Avatar Member CoreCoins Purchaser
    Reputation
    3
    Join Date
    May 2008
    Posts
    70
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi guys, I'm looking for a piece of code that will check to see if there's 2 or more mobs and then cast cleave. Can someone help me out?

  12. #4587
    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)
    WTB A holy pally pvp profile :< Bubbbbbbbaaaaa! :3

  13. #4588
    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 yourson View Post
    Anyone to make code that would put demo baner of warrior on mouse over, similar like heroic leap works... you target spot on ground ress button and pequer does rest .

    I tried just by replacing spells and key but it didnt work.

    This is banner itself Demoralizing Banner - Spell - World of Warcraft
    Bump . Warriors and healers would be thankful for this one.

  14. #4589
    Bekimo's Avatar Corporal
    Reputation
    2
    Join Date
    Mar 2012
    Posts
    17
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    We need good warrior profile?! Anyone? ;>

  15. #4590
    FrostDKsFTW's Avatar Sergeant Major
    Reputation
    20
    Join Date
    Nov 2011
    Posts
    169
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Kinkeh

    I've been trying your pvp profile out in battlegrounds, works well but after a few mins it stops working, no errors just stops attacking. I'll let you know if I find what it is.

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 01:59 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