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

User Tag List

Page 7 of 731 FirstFirst ... 3456789101157107507 ... LastLast
Results 91 to 105 of 10955
  1. #91
    smol's Avatar Private
    Reputation
    1
    Join Date
    Jun 2011
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yes it is throwing up errors :P

    Thanks for your help anyway I eagerly await the Hunter rotations in the mean time, great work repped

    [BETA] PQRotation - an automated ability priority queue.
  2. #92
    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)
    Originally Posted by SprayPlaster View Post
    The bot seems to be doing 1k dps more than me, despite it doing a very basic rotation, and me trying to recast dots when lots of procs happen together (ES, synapse, volcanic destruction, pots, power torrent etc) and clipping mind flay where i think is appropriate. I must've done something really wrong -_-. One question, is it possible to add a movement rotation? Like do swd whenever it's off cd when on the move and spam DP?
    I'm pleased you like it! It's the normal rotation that I use. I'm aware that there are a lot of different opinions on opening rotations. Many feel it is best to lead off with dots first, and then build buffs later. The reason I don't advocate this in the script is because at the start of the pull, you have a lot of procs going off - shadow orbs, trinkets, enchants, etc... If you lead off with dots, they are ticking at their lowest settings, and will need to be refreshed as soon as buffs become active.

    Starting with a normal cast Mind Flay to get the rotation started automatically dishes out some serious damage. I'll start working on a AoE method as well for this.

    Not really sure about movement, but, I'll try and look around to see if I can find anything in the LUA to detect it.

  3. #93
    Xelper's Avatar ★ Elder ★
    Reputation
    1024
    Join Date
    Mar 2007
    Posts
    860
    Thanks G/R
    0/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kclux View Post
    1.02 also still instantly freezes WoW when I hit Alt+X . English operating system Windows7 64 Bit with english WoW client. And 1.0.0.9 still works perfect.
    Very strange since I didn't change anything related to how the bot actually functions since 1009. You aren't copying the EXE to the old folder are you? It requires the vshost.exe and Settings XML be the latest version.

    Couple things:
    Right click PQR102.zip and hit Extract All. Right Click PriorityQueueRotation.exe in the PQR102 folder and Run as Administrator. Make sure you hadn't used 1.0.0.9 in the same WoW session.
    If that doesn't work make sure you have the latest .NET Framework 4.0 installed.

    ---------- Post added at 10:05 AM ---------- Previous post was at 10:04 AM ----------

    Originally Posted by mentally View Post
    Not really sure about movement, but, I'll try and look around to see if I can find anything in the LUA to detect it.
    PQR_IsMoving(seconds) - returns true if the player has been moving for X seconds down to 4 decimal places. (Version 1.0.0.9+)
    Last edited by Xelper; 07-15-2011 at 09:08 AM.

  4. #94
    marcmk2's Avatar Member
    Reputation
    5
    Join Date
    Nov 2008
    Posts
    51
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey just tried it out for the first time, really awesome although I'm no macro writing expert or anything but the fury rotation raging blow is supposed to have priority but this bot used a bunch of other abilities while raging blow just sat there off cooldown for about 5 - 10 seconds. Is there a way to add more priority to raging blow so that when it comes off cooldown it uses it right away? Thanks

  5. #95
    kclux's Avatar Active Member
    Reputation
    16
    Join Date
    Jun 2011
    Posts
    199
    Thanks G/R
    2/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I am logged in to Widows as Administrator but I still right clicked the exe and ran it as Admin and the result was again a crash when I tried to activate a rotation. The only thing I do copy over are rotations, I run the new version from its own folder. My NET Framework is 4.0.30319.

    Good thing 1.0.9 still works

  6. #96
    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)
    Thanks for the code Xelper. :P

    For some reason though I cannot for the life of me get PQR_IsMoving to work, have a look;

    Spell: Shadow Word: Death
    LUA:
    local BossHP = 100 * UnitHealth("target") / UnitHealthMax("target")

    Code:
    if PQR_IsMoving(2) then
    	return true
    else
    	if BossHP < 25 then
    		return true
    	end
    	return false
    end
    Just makes WoW lag like a B when starting it up. Not sure what I'm doing wrong.
    Last edited by Kinky; 07-15-2011 at 09:58 AM. Reason: added code section

  7. #97
    Xelper's Avatar ★ Elder ★
    Reputation
    1024
    Join Date
    Mar 2007
    Posts
    860
    Thanks G/R
    0/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hmm... works for me...

    type this ingame after you have started or stopped the bot atleast once: /script print(PQR_IsMoving(2))

    See if it prints anything to the chat. You are running at least version 1.0.0.9, correct? PQR_IsMoving was added in 1.0.0.9 and if you are running an older version it will definitely cause your WoW to lag since it will be a nil value.
    Code:
    local BossHP = 100 * UnitHealth("target") / UnitHealthMax("target")
    
    
    if PQR_IsMoving(2) then
        return true
    else
        if BossHP < 25 then
            return true
        end
        return false
    end


    ---------- Post added at 11:05 AM ---------- Previous post was at 10:58 AM ----------

    Oh and if you are upgrading from an old version you must either:

    1) Close your WoW first
    or
    2) Close the old version, /console reloadui ingame, launch new version.
    Last edited by Xelper; 07-15-2011 at 10:00 AM.

  8. #98
    n1bl3r's Avatar Corporal
    Reputation
    6
    Join Date
    Jul 2011
    Posts
    26
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Awesome app, I had to dust off a couple of older toons to try the premade rotations. Worked Great! Does anyone have a working arcane rotation. I have been trying to get on to work but no luck. Thanks,

  9. #99
    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)
    I tried updating from 1.0.0.9 to 1.0.2, but wow just hangs.
    Might've been the version I'm using that's at fault though I can't test it at the moment as 1.0.2 keeps crashing my WoW.

    (.Net Framewoek 4.0 installed, rebooted and all. Running WoW/PQR as Administrator)

  10. #100
    Xelper's Avatar ★ Elder ★
    Reputation
    1024
    Join Date
    Mar 2007
    Posts
    860
    Thanks G/R
    0/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mentally View Post
    I tried updating from 1.0.0.9 to 1.0.2, but wow just hangs.
    Might've been the version I'm using that's at fault though I can't test it at the moment as 1.0.2 keeps crashing my WoW.

    (.Net Framewoek 4.0 installed, rebooted and all. Running WoW/PQR as Administrator)
    Are you also running Windows XP?

  11. #101
    kclux's Avatar Active Member
    Reputation
    16
    Join Date
    Jun 2011
    Posts
    199
    Thanks G/R
    2/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Tried it on my Notebook, same result with v1.0.2 WoW instantly freezes on Alt+X.

  12. #102
    Xelper's Avatar ★ Elder ★
    Reputation
    1024
    Join Date
    Mar 2007
    Posts
    860
    Thanks G/R
    0/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Im going to upload a debug version in a few minutes, try it out please.

    PQR103 (Debug)
    http://www.mediafire.com/?l89vkwyuuox52t3


    I removed the 2 new features I added from 1.0.0.9 -> 1.0.1 (Vanish detection and Refresh Rate Control)
    Last edited by Xelper; 07-15-2011 at 10:37 AM.

  13. #103
    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)
    Ah 1.0.3 seems to work great for me. I'm running Win7 Ultimate x64 though. :P
    Last edited by Kinky; 07-15-2011 at 10:48 AM.

  14. #104
    kclux's Avatar Active Member
    Reputation
    16
    Join Date
    Jun 2011
    Posts
    199
    Thanks G/R
    2/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The debug version seems to work fine.

  15. #105
    Xelper's Avatar ★ Elder ★
    Reputation
    1024
    Join Date
    Mar 2007
    Posts
    860
    Thanks G/R
    0/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kclux View Post
    The debug version seems to work fine.
    Okay, it was probably the rate control that was doing it then... I'll look into it and upload a new version tonight.

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 04:47 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search