PQR - Rotation Bot menu

User Tag List

Page 608 of 779 FirstFirst ... 108508558604605606607608609610611612658708 ... LastLast
Results 9,106 to 9,120 of 11681
  1. #9106
    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 tell me why no fury warrior profiles work anymore :/

    I got Bgreen, Nova, Failroad ones and none will work and i dont know how to fix it

    PQR - Rotation Bot
  2. #9107
    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 Weird0 View Post
    actually he was talking about cpu

    mine uses 40mb aaaaaaannnndddd *takes a peek* around 2-3% cpu so yea his 7.3% are alot compared to that
    Hmmm, mine uses the memory I stated and when I'm in LFR, the CPU usage tops out at around 10%. Remind you, everything PQR does is pretty much math for most of the functions. Math and CPU both go hand in hand. Would be nice though if we could some day get PQR to run off of the GPU's CPU That would be a epic day there lol (Seeing as how WoW is a more CPU intensive game instead of a GPU intensive game).

  3. #9108
    bestdamnwarrior's Avatar Master Sergeant
    Reputation
    20
    Join Date
    Nov 2011
    Posts
    110
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by MibuT View Post
    Can someone tell me why no fury warrior profiles work anymore :/

    I got Bgreen, Nova, Failroad ones and none will work and i dont know how to fix it
    If you haven't gone in a modified those to remove deadly calm and a couple other changes, that's probably why they don't work. Replik has an updated one as well as Soapboxes paid profile and a few others are out there, just go look in the bot maps and profiles section and look through there.

  4. #9109
    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)
    Originally Posted by bestdamnwarrior View Post
    If you haven't gone in a modified those to remove deadly calm and a couple other changes, that's probably why they don't work. Replik has an updated one as well as Soapboxes paid profile and a few others are out there, just go look in the bot maps and profiles section and look through there.
    Ty for pointing me to Replik :>

  5. #9110
    blakehan's Avatar Member
    Reputation
    1
    Join Date
    Apr 2012
    Posts
    41
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey! Could u tell me how to reduce the cpu's occupancy? if I open pqr,fps will be decreased to 1~2!

  6. #9111
    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 blakehan View Post
    Hey! Could u tell me how to reduce the cpu's occupancy? if I open pqr,fps will be decreased to 1~2!
    Thats because you most likely use a old profile which creates a lot of lua-errors, what profile are you using?

  7. #9112
    thenthelies's Avatar Member
    Reputation
    14
    Join Date
    Dec 2007
    Posts
    70
    Thanks G/R
    3/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey! hopefully someone can help me out;

    I'm trying to figure out if I could take the ability function 'Recast Delay' into the code of my rotation.

    Basically I like coding my rotations in one big ability and that has been fine for melee classes, but now that I'm trying to make a rotation for a caster class, it's giving me a lot of overlapping spell problems.

    Thanks~

    P.S.: I've tried PQR_AddToSpellDelayList but this seems to only functions when the spell cast fails.
    Last edited by thenthelies; 04-02-2013 at 05:12 AM.

  8. #9113
    vitalic's Avatar Contributor CoreCoins Purchaser
    Reputation
    182
    Join Date
    Jun 2010
    Posts
    3,527
    Thanks G/R
    8/3
    Trade Feedback
    10 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Is there any way to call a specific rotation ability from an in game macro?

  9. #9114
    Mavmins's Avatar Contributor
    Reputation
    165
    Join Date
    Oct 2012
    Posts
    606
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by thenthelies View Post
    Hey! hopefully someone can help me out;

    I'm trying to figure out if I could take the ability function 'Recast Delay' into the code of my rotation.

    Basically I like coding my rotations in one big ability and that has been fine for melee classes, but now that I'm trying to make a rotation for a caster class, it's giving me a lot of overlapping spell problems.

    Thanks~

    P.S.: I've tried PQR_AddToSpellDelayList but this seems to only functions when the spell cast fails.
    Code:
    PQR_DelayRotation(0.8)
    Where 0.8 is the time in seconds to delay the rotation. Would that help ?

  10. #9115
    thenthelies's Avatar Member
    Reputation
    14
    Join Date
    Dec 2007
    Posts
    70
    Thanks G/R
    3/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Mavmins View Post
    Code:
    PQR_DelayRotation(0.8)
    Where 0.8 is the time in seconds to delay the rotation. Would that help ?
    Afraid not this delays the entire rotation and thus no abilities go off until time is up

    Pretty much I write like this:
    PHP Code:
    if "priority1 conditions met" then
    cast
    ("spell1")

    elseif 
    "priority2 conditions met" then
    cast
    ("spell 2")

    elseif 
    "priority3 conditions met" then
    cast
    ("spell 3")

    end 
    All in one PQR ability, and this controls everything I want the class to do.

    in my perfect world it would be

    PHP Code:
    if "priority1 conditions met" then
    cast
    ("spell1 id")
    PQR_DelaySpellID(spell idsecs to delay) <does not try to recast this ability until time is up

    elseif "priority2 conditions met" then
    cast
    ("spell 2"
    But sadly I'm now pretty sure it doesn't exists, so I'll have to code the modern way :l

  11. #9116
    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)
    in the nova data file theres a function that adds a spellid to a table then compares it to the current time from when it was last used. in essence a timer for spells, however if you add in a combat event reader like valmas old profiles you can 'pause' the whole if then until you get a Spell_ Success or Spell_Damage.

    What valma did was really complex as he made his rotations use tables for delays, enabled, etc,etc but the rotation itself was a function that returned the spellid and target that he used in the rotational handler.

    https://code.google.com/p/valma-pqr-...ource/checkout is the link to the old 4.3 profiles of his. take your time and pick it apart and you'll understand what he did.

    Please if someone helped you donate rep to them.

  12. #9117
    blakehan's Avatar Member
    Reputation
    1
    Join Date
    Apr 2012
    Posts
    41
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ninjaderp View Post
    Thats because you most likely use a old profile which creates a lot of lua-errors, what profile are you using?
    http://www.ownedcore.com/forums/worl...-profiles.html ([PQR][PVE]Vachiusa healer profiles)

    I used this profile

  13. #9118
    Gabbz's Avatar Contributor
    Reputation
    184
    Join Date
    Dec 2011
    Posts
    451
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by thenthelies View Post
    Hey! hopefully someone can help me out;

    I'm trying to figure out if I could take the ability function 'Recast Delay' into the code of my rotation.

    Basically I like coding my rotations in one big ability and that has been fine for melee classes, but now that I'm trying to make a rotation for a caster class, it's giving me a lot of overlapping spell problems.

    Thanks~

    P.S.: I've tried PQR_AddToSpellDelayList but this seems to only functions when the spell cast fails.
    What is your problem exactly? Im coding in a similiar way and for the most part there is no issue. Altough some of the abilities that are off cd like Soulburn there could be some timing issues.

    The best way is to create a timer for when you tried the ability and then check that amount of time has passed. But again, what is the problem really?
    Looking for exploiters and botters to Elder Scrolls Online.

  14. #9119
    Devolenok's Avatar Member
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi to all.
    Is there a new Noblegarden interrupt rotation?
    Thx in advance.

  15. #9120
    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)
    I remember there was last year, Firepong made one IIRC.

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