PQR - Rotation Bot menu

User Tag List

Page 414 of 779 FirstFirst ... 314364410411412413414415416417418464514 ... LastLast
Results 6,196 to 6,210 of 11681
  1. #6196
    Ninjaderp's Avatar Banned
    Reputation
    199
    Join Date
    Dec 2010
    Posts
    1,847
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    PQR - Rotation Bot
  2. #6197
    NicodemusAtNIMH's Avatar Member
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    48
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I believe it's mental's and crystals rotations for the demo warlock but since the link was down I can't update from program.

  3. #6198
    Ninjaderp's Avatar Banned
    Reputation
    199
    Join Date
    Dec 2010
    Posts
    1,847
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by NicodemusAtNIMH View Post
    I believe it's mental's and crystals rotations for the demo warlock but since the link was down I can't update from program.
    Yeah, they changed site to Assembla instead of their old one.
    Make a new folder somewhere, and use this svn to get all the profiles:
    https://subversion.assembla.com/svn/nova-project/

  4. #6199
    Beelzix's Avatar Member
    Reputation
    1
    Join Date
    Jun 2011
    Posts
    58
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ty Ninjaderp it works perfectly

  5. #6200
    Kinky's Avatar Banned CoreCoins Purchaser
    Reputation
    481
    Join Date
    Nov 2008
    Posts
    500
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Releasing Fire Mage once I wake up! Need a good night's rest. I managed to simplify a lot of the profiles, effectively merging them into 2 profiles rather than 4. Single-Target - Automatic and Single-Target Manual. Difference is that it will still use Scorch/PoM whenever the best situation for them are (Moving or Proc dependant), personally I managed to get a good crit streak once and averaged 74.4k DPS for a long while with automatic Invocation usage (I forgot to add some checks to it, so it kept using it no matter what I had active!) so I'm only going to fix that in the morning.
    Expect an update to Shadow Priest as well in a couple of hours!

    Teh stress!

  6. #6201
    darksahde's Avatar Master Sergeant
    Reputation
    12
    Join Date
    Jan 2012
    Posts
    76
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can anyone check this code for me?

    Code:
    if UnitLevel("target") == -1 then
    	if not UnitDebuffID("target", 131894, "PLAYER") 
    	and select(2,GetSpellCooldown("player", 131894)) < 2 then
    		return false 
    	end
    else
            if UnitPower("player") >= 40 then
    	        return true
            end
    end
    I want to stop casting arcane shot when murder of crow is almost off cooldown, i got something like this, but this seems to give insane amount of lua error.

    Also is there a way to simplifies this code? or use CastSpellByName function.
    Last edited by darksahde; 11-21-2012 at 03:55 AM.

  7. #6202
    firepong's Avatar Elite User
    Reputation
    384
    Join Date
    Jan 2008
    Posts
    955
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by darksahde View Post
    Can anyone check this code for me?

    Code:
    if UnitLevel("target") == -1 then
    	if not UnitDebuffID("target", 131894, "PLAYER") 
    	and select(2,GetSpellCooldown("player", 131894)) < 2 then
    		return false 
    	end
    else
            if UnitPower("player") >= 40 then
    	        return true
            end
    end
    I want to stop casting arcane shot when murder of crow is almost off cooldown, i got something like this, but this seems to give insane amount of lua error.
    PHP Code:
    local mcStartmcDuration GetSpellCooldown(131894)
    local mcCD mcStart mcDuration GetTime()
    local someDebuff UnitDebuffID("Target"131894"PLAYER")
    local Focus UnitPower("Player")

    if 
    UnitLevel("Target") == -1 then
        
    if not someDebuff and mcCD 2 then
            
    return false 
        
    elseif Focus >= 40 then
            
    return true
        end
    end 
    Probably what I would do. Or something Like that. I haven't coded for hunter's in a while.
    Last edited by firepong; 11-21-2012 at 04:00 AM.

  8. #6203
    darksahde's Avatar Master Sergeant
    Reputation
    12
    Join Date
    Jan 2012
    Posts
    76
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by firepong View Post
    PHP Code:
    local mcStartmcDuration GetSpellCooldown(131894)
    local mcCD mcStart mcDuration GetTime()
    local someDebuff UnitDebuffID("Target"131894"PLAYER")
    local Focus UnitPower("Player")

    if 
    UnitLevel("Target") == -1 then
        
    if not someDebuff and mcCD 2 then
            
    return false 
        
    elseif Focus >= 40 then
            
    return true
        end
    end 
    Probably what I would do. Or something Like that. I haven't coded for hunter's in a while.
    But select(2,Getspellcooldown("player", 131894)) < 2 already return the length of cooldown remains? maybe i should add - GetTime().

    what does your Start for?

  9. #6204
    Hoblerhans's Avatar Member
    Reputation
    9
    Join Date
    Dec 2010
    Posts
    64
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Gazzooks View Post

    My own notes:

    I am assuming all i had to do was hit alt -x , are there any other keys to hit to tell it when it is supposed to attack a tgt?
    Nope.

    Usually pqr starts the rotation after klicking on a mob and being in combat.
    There are modifier keys implemented by the individual profile author to switch f.e. between aoe and single target modes. Or a pause key
    These keys are often mentioned in the yellow triangle shown on ur pqr main frame.

    If a profile dont work, it is likely not designed for leveling, it is old(cata profiles) or u missed f.e. the data file while downloading.

    Hope this helps a bit

  10. #6205
    goldio's Avatar Member
    Reputation
    3
    Join Date
    May 2007
    Posts
    34
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I need some help...
    Based on Sheurons Heal Engine, how can I set a priority for my heals in a group or party?
    4 example if I would prioritize tanks, healer and at the end the dd´s...
    Code:
    if members[1].HP < 70 
    and not PQR_IsMoving(1) then
      PQR_CustomTarget = members[1].Unit
      return true
    end
    Is there a possibility to query a focus target?
    What means the 1 in members[1].HP?

  11. #6206
    blacknightlll's Avatar Member
    Reputation
    4
    Join Date
    Mar 2009
    Posts
    154
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey mentally I'll be home all day today. Think I got the 24hr bug. Would your profile work on a 85 Mage?

  12. #6207
    Trekku's Avatar Member
    Reputation
    1
    Join Date
    Apr 2012
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I just came back to WoW since MoP release, In cata i used Simcraft Arms/fury for my warrior. Is that profile still around for MoP?
    If not, what are the best DPS profiles at this moment for warrior. Looked through many pages but didn't find anything except for the paying one.

  13. #6208
    Ninjaderp's Avatar Banned
    Reputation
    199
    Join Date
    Dec 2010
    Posts
    1,847
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Failroad has a really good Arms/Fury profile you should use, its his PVP-version that you pay to get.

  14. #6209
    Nerder's Avatar Contributor
    Reputation
    117
    Join Date
    Aug 2012
    Posts
    263
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If I could get someones assistance with a profile that I'm in the works of, that would be great. I've noticed around that there is no real mistweaver, so earlier today I started to work on mine again. I've completed a work in progress one but am not satisfied with it at all... I mean it'll heal but certain things that I like are not working. In LFR I was atleast top 3 heals each encounter, 1 was top heals (460 ilvl mistweaver and was also wearing an agi chest, hah)

    Anyway, the part that I'm stuck on is with canceling the current cast. I have it working to a certain extent...
    Code:
    if UnitBuffID(members[1].Unit, 115175, "PLAYER") then
    	if members[1].HP >= 95 then
    		if UnitChannelInfo("player") then
    			if UnitChannelInfo("player") == GetSpellInfo(115175) then
    				PQR_CustomTarget = members[1].Unit
    				SpellStopCasting()
    				return true
    			end
    		end
    	end
    end
    Thats what I'm using at the moment, but its not working to cancel the channel unless I physically have the target targeted. After seeing this I've tested with other things like Dispells when targets have certain buffs, they too will not dispell unless actually targeting. I know the members[1].Unit part is working or the members[1].HP because the healing spells are working no issue.

  15. #6210
    Kinky's Avatar Banned CoreCoins Purchaser
    Reputation
    481
    Join Date
    Nov 2008
    Posts
    500
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Nerder: Make sure "Cancel Channel" is set to True not False.
    Fire Mage profile and Shadow Priest will be uploaded/updated once I get home from school in a couple of hours!

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 04:32 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