PQR - Rotation Bot menu

User Tag List

Page 326 of 779 FirstFirst ... 226276322323324325326327328329330376426 ... LastLast
Results 4,876 to 4,890 of 11681
  1. #4876
    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)
    Try restarting your PC. If that doesn't work try a fresh copy of PQR.

    PQR - Rotation Bot
  2. #4877
    [Blinded]'s Avatar Contributor
    Reputation
    88
    Join Date
    Nov 2009
    Posts
    177
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Tried both already nothing helped

  3. #4878
    kayonekayone's Avatar Member
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    22
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xelper View Post
    Try restarting your PC. If that doesn't work try a fresh copy of PQR.
    same was by me, restart pqr and then should it be workin...

  4. #4879
    [Blinded]'s Avatar Contributor
    Reputation
    88
    Join Date
    Nov 2009
    Posts
    177
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kayonekayone View Post
    same was by me, restart pqr and then should it be workin...
    Nope doesn't change anything :/

  5. #4880
    TheBolivianGuy's Avatar Corporal
    Reputation
    17
    Join Date
    Apr 2012
    Posts
    33
    Thanks G/R
    1/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    PQR working fine for me (US) just received the update via the launcher

  6. #4881
    Unasrage's Avatar Member
    Reputation
    6
    Join Date
    Oct 2009
    Posts
    55
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    HI guys

    So my guild wants me to roll a MystWeaver Monk. Healer.. yay...

    So i came to do a public ofert since no 1 tryed so far to do a MystWeaver Monk profile ( Bubba not working and beta fased) so i Offer a considerable Donation to Any 1 able to make a decent MystWeaver Monk profile.

    Pm me for info

    =)=)

  7. #4882
    howardiv's Avatar Member
    Reputation
    2
    Join Date
    Apr 2010
    Posts
    39
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is it possible to convert honorbuddy combat routines to pqr

  8. #4883
    alucard1's Avatar Active Member
    Reputation
    36
    Join Date
    Oct 2007
    Posts
    246
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Trying to get a script to use synapse springs, this is my first time making anything (picking apart and trying to work it out)

    But i have the problem of trying to get it to detect alter time buff, if it's not up, use springs.

    Code:
    local AT = UnitBuffID("player", "108978")
    
    
    if GetInventoryItemCooldown("player",10) == 0
    and AT == nil then
    return true
    UseInventoryItem(10)
    end
    But atm it stops the script completely. Going to try some more things as writing this gave me an idea, thanks in advance.

    just leaving it up there atm, but i think i got it working with

    Code:
    local AT = UnitBuffID("player", "108978")
    
    
    if GetInventoryItemCooldown("player",10) == 0
    and AT == nil then
    return
    UseInventoryItem(10)
    end
    Unless i am mising something that could be more of use.

    Edit again, yayyyy it works =D first real piece of anything i made myself...ish =p had some help by looking over others scripts (boss, sheep)
    Last edited by alucard1; 10-10-2012 at 01:06 PM.

  9. #4884
    Tolpan's Avatar Member
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    8
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Mistweaver never forget to drink manatea

    who knows whats wrong?
    just want to drink manatea with my mistweaver every time it is ready with 2 stacks ...

    PHP Code:
    local MP 100 UnitPower("player") / UnitPowerMax("player")
    local Tea UnitBuffID("player"123761)

    if 
    MP 90 
    and GetSpellCooldown(123761) == 0
    and Tea >= 2
    and PQR_SpellAvailable() then 
        
    return true 
    end 

  10. #4885
    alucard1's Avatar Active Member
    Reputation
    36
    Join Date
    Oct 2007
    Posts
    246
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Tolpan View Post
    who knows whats wrong?
    just want to drink manatea with my mistweaver every time it is ready with 2 stacks ...

    PHP Code:
    local MP 100 UnitPower("player") / UnitPowerMax("player")
    local Tea UnitBuffID("player"123761)

    if 
    MP 90 
    and GetSpellCooldown(123761) == 0
    and Tea >= 2
    and PQR_SpellAvailable() then 
        
    return true 
    end 

    Wouldn't you have to cast it? i don't see that in there (still learning, so if PQR_spellavailable() is using the previous getspellcooldown)

  11. #4886
    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 alucard1 View Post
    Wouldn't you have to cast it? i don't see that in there (still learning, so if PQR_spellavailable() is using the previous getspellcooldown)
    PQR_SpellAvailable(spellid) is how you use that. other than that i don't see a prob with it.

    Please if someone helped you donate rep to them.

  12. #4887
    zarreus's Avatar Member
    Reputation
    1
    Join Date
    Nov 2009
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Looking for a decent Elemental Shaman rotation

    ty in advance for your assistance

  13. #4888
    ghost4u's Avatar Private
    Reputation
    1
    Join Date
    Sep 2012
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by [Blinded] View Post
    Nope doesn't change anything :/
    running PQR update work for me

  14. #4889
    Techz's Avatar Member
    Reputation
    2
    Join Date
    Aug 2009
    Posts
    160
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi all

    Not been on for a while who has the best hunter profiles now? as in best dps dont care about spec i can change just want highest dps lol

    Thanks in advance :-)

  15. #4890
    osbornx22's Avatar Sergeant
    Reputation
    14
    Join Date
    Nov 2009
    Posts
    69
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is there any way to get the spec of a target without buff/debuff checking? for example if pala is ret or holy?

    i found

    http://wowprogramming.com/docs/api/GetArenaOpponentSpec

    and

    http://wowprogramming.com/docs/api/GetBattlefieldScore

    but for the second, how i get the index for the target without a loop over all players.

    and how i can get the spec in open world?
    Last edited by osbornx22; 10-10-2012 at 02:36 PM.

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