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

User Tag List

Page 601 of 731 FirstFirst ... 101501551597598599600601602603604605651701 ... LastLast
Results 9,001 to 9,015 of 10955
  1. #9001
    Kaolla's Avatar Contributor
    Authenticator enabled
    Reputation
    126
    Join Date
    Apr 2007
    Posts
    341
    Thanks G/R
    2/2
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kurt129 View Post
    Okay. So. I just earlier today while servers were down that i could download a 64 bit version wow client via the site. Here is the link ---> World of Warcraft *4.3.3* 64 bit client - Forums - World of Warcraft while using this client everything went faster (load times and frame rate) but the problem is, is that PQR wont detect the 64 bit process client. What file do i have to edit to let PQR detect this? It would be very nice since this x64 bit client runs twice as fast as the x86. (that is if you have a x64 bit OS) Thank you for your help guys :]
    *bangs head on table*

    Xelper has repeatedly (I cannot stress this enough) stated that he has no intention of making an x64 version of PQR in the foreseeable future.

    While the 64-bit WoW client is nice, the actual performance gains from it are extremely minimal; you won't ever see a two-fold increase in speed unless there was something seriously wrong with how your computer allocated memory. Given that WoW was made Large Address Aware prior to the release of the 64-bit client, the difference should be practically unnoticeable.

    Making PQR compatible with 64-bit clients involves substantially more than editing a couple of files. While x64 PQR would be nice, it's too much work for too little gain.

    [BETA] PQRotation - an automated ability priority queue.
  2. #9002
    moochild's Avatar Corporal
    Reputation
    1
    Join Date
    Oct 2011
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just looking for some quick help out there. I know there are plenty of hunter profiles out there, but I figured the best practice for creating them would be to use a class I was familiar with and create my own. The profile works great as long as I don't have my Wing Clip/Raptor strike ability in the rotation. When I add the ability my framerate drops to 4fps and the rotation stops working completely.

    Here are the two code snippets used.

    Code:
    if MeleeRange == 1 then
      local slows = { 45524, 16979, 2974, 13809, 116, 120, 11113, 31589, 15407, 3408, 26679, 8056, 3600, 18223, 12323 }
      local freedom = { 1044, 53271 }
      local HasSlow == nil
    
      for i=1,#slows do
        if UnitDebuffID( "target", slows[i] ) then
      	  HasSlow = 1
        end
      end
    
      for i=1,#freedom do
        if UnitBuffID( "target", freedom[i] ) then
      	  HasFreedom = 1 
        end
      end
      
      if HasSlow ~= 1 and HasFreedom ~=1 then
        return true
      else
        CastSpellById(2974, "target")
      end
    end
    and to calculate melee range

    Code:
    MeleeRange  		= IsSpellInRange(tostring(GetSpellInfo(2974)), "target")

  3. #9003
    CPCS0101's Avatar Corporal
    Reputation
    4
    Join Date
    Sep 2011
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Kaolla View Post
    *bangs head on table*

    Xelper has repeatedly (I cannot stress this enough) stated that he has no intention of making an x64 version of PQR in the foreseeable future.

    While the 64-bit WoW client is nice, the actual performance gains from it are extremely minimal; you won't ever see a two-fold increase in speed unless there was something seriously wrong with how your computer allocated memory. Given that WoW was made Large Address Aware prior to the release of the 64-bit client, the difference should be practically unnoticeable.

    Making PQR compatible with 64-bit clients involves substantially more than editing a couple of files. While x64 PQR would be nice, it's too much work for too little gain.
    Ironically, x64 version of wow actually slowed mine down, by a lot. I'm sure it was probably some setting on my end, but 5 minutes of it turned me back to the x86.

  4. #9004
    Kaolla's Avatar Contributor
    Authenticator enabled
    Reputation
    126
    Join Date
    Apr 2007
    Posts
    341
    Thanks G/R
    2/2
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by CPCS0101 View Post
    Ironically, x64 version of wow actually slowed mine down, by a lot. I'm sure it was probably some setting on my end, but 5 minutes of it turned me back to the x86.
    Case in point. I have guildmates who tried playing with only 4GB of RAM, which the 64-bit WoW client essentially gobbled up on its own.

  5. #9005
    bgr's Avatar Sergeant
    Reputation
    9
    Join Date
    Apr 2012
    Posts
    55
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Xelper, could you please help me, pretty please? I'm using 32bit wow and essentially it won't detect that I'm in game. I have updated offsets, yes I'm on a retail server, yes I'm in game. If you have skype I can stream to you. I have tried running it as admin without antivirus software and allowed everything through my firewall. This is driving me nuts.

  6. #9006
    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 moochild View Post
    Just looking for some quick help out there. I know there are plenty of hunter profiles out there, but I figured the best practice for creating them would be to use a class I was familiar with and create my own. The profile works great as long as I don't have my Wing Clip/Raptor strike ability in the rotation. When I add the ability my framerate drops to 4fps and the rotation stops working completely.

    Here are the two code snippets used.

    Code:
    if MeleeRange == 1 then
      local slows = { 45524, 16979, 2974, 13809, 116, 120, 11113, 31589, 15407, 3408, 26679, 8056, 3600, 18223, 12323 }
      local freedom = { 1044, 53271 }
      local HasSlow == nil
    
      for i=1,#slows do
        if UnitDebuffID( "target", slows[i] ) then
      	  HasSlow = 1
        end
      end
    
      for i=1,#freedom do
        if UnitBuffID( "target", freedom[i] ) then
      	  HasFreedom = 1 
        end
      end
      
      if HasSlow ~= 1 and HasFreedom ~=1 then
        return true
      else
        CastSpellById(2974, "target")
      end
    end
    and to calculate melee range

    Code:
    MeleeRange  		= IsSpellInRange(tostring(GetSpellInfo(2974)), "target")
    unless I miss what wing clip and raptor strike do

    wouldnt a simple

    Code:
    if IsSpellInRange("raptor strike", "target") == 1 then
    return true
    end
    work? I think you are checking if its slowed already or has a trinket? no idea as both don't cost you anything

  7. #9007
    daveyboyuk's Avatar Active Member
    Reputation
    31
    Join Date
    May 2009
    Posts
    201
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @kaolla pve profile gogo

  8. #9008
    farnumdizzle's Avatar Master Sergeant
    Reputation
    32
    Join Date
    Mar 2012
    Posts
    93
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I remember the days when I didn't know how to use the search function.....

  9. #9009
    moochild's Avatar Corporal
    Reputation
    1
    Join Date
    Oct 2011
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by me28791 View Post
    unless I miss what wing clip and raptor strike do

    wouldnt a simple

    Code:
    if IsSpellInRange("raptor strike", "target") == 1 then
    return true
    end
    work? I think you are checking if its slowed already or has a trinket? no idea as both don't cost you anything
    Yeah, that would work, but I was also going to use similar code for concussive shot. If the target is already slowed or immune to slows I don't want to waste globals firing a shot that does nothing.

    For the code I posted, I wanted to smack them with a raptor strike if they were already slowed. If they weren't slowed I wanted to wing clip so I could get away. Both situations would be followed by a disengage.

  10. #9010
    daveyboyuk's Avatar Active Member
    Reputation
    31
    Join Date
    May 2009
    Posts
    201
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    woot sarcasm ftw i wasnt looking for a old profile genius just asking kaolla in a round about way for a new pve profile

  11. #9011
    farnumdizzle's Avatar Master Sergeant
    Reputation
    32
    Join Date
    Mar 2012
    Posts
    93
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i wasn't talking about you davey, that's fine....i'd like kaolla to make pve ones too....i was talking about the people asking for the auto-de and ret pally profiles and other stuff like that

  12. #9012
    daveyboyuk's Avatar Active Member
    Reputation
    31
    Join Date
    May 2009
    Posts
    201
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    my appologies i take it back sometimes i forget im not in /2

  13. #9013
    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)
    Originally Posted by Taran32 View Post
    @Everyone

    Sheuron posted that the SKIP UNKNOWN feature was somehow inverted, so if you're attempting to use some of the profiles for leveling and they aren't working, do this:

    1. Go into Ability Editor
    2. Look for the SKIP UNKNOWN feature of each ability in whatever profile you're testing
    3. Change TRUE to FALSE
    4. Hit Save
    5. Move onto next ability and rinse, repeat.

    After doing this, I was able to use Sheuron's Frost PVP profile in Lvl 70 BGs, which wouldn't work before. It works flawlessly. It should work for other profiles as well, as Xelper accidentally inverted the feature. Try it out.
    What about -- initialize --, special events and stuff like that keep that true or change it to

  14. #9014
    Kaolla's Avatar Contributor
    Authenticator enabled
    Reputation
    126
    Join Date
    Apr 2007
    Posts
    341
    Thanks G/R
    2/2
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Going to do my best, Davey Class is cancelled tomorrow, so I'll see what I can do.

  15. #9015
    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 daveyboyuk View Post
    @kaolla pve profile gogo
    try the Nova Unholy build real quick
    ^0^Team Nova's PQR NCC ^0^

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

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 09:23 PM. 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