PQR - Rotation Bot menu

User Tag List

Page 381 of 779 FirstFirst ... 281331377378379380381382383384385431481 ... LastLast
Results 5,701 to 5,715 of 11681
  1. #5701
    Crackjack's Avatar Active Member
    Reputation
    23
    Join Date
    Aug 2008
    Posts
    220
    Thanks G/R
    26/15
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mentally View Post
    Almost done! I expect to be done within tonight.
    Let us know how it goes with that demo! I'm struggling desperately to get one to work..

    PQR - Rotation Bot
  2. #5702
    tigole1's Avatar Member
    Reputation
    3
    Join Date
    Apr 2012
    Posts
    82
    Thanks G/R
    0/1
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    mentally huge fan of yours are you going to work on affliction warlock profile, right now affliction is the highest raid dps in mop.

  3. #5703
    cpowroks's Avatar Contributor
    Reputation
    180
    Join Date
    Oct 2007
    Posts
    623
    Thanks G/R
    1/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I am trying to make a Resto shaman Profile and im looking at Sheuron's resto profile for some sort of a starting place and i see this array called members (or atleast i think this is an array) do i have to initialize this array or is it build into PQR/Wow for players in a raid/group. is there any resources i could read about this.

    Thanks a bunch!
    WoW LUA Script Developer
    Need Something Custom? WarmaneScripts.com
    Skype - grapejuice111

  4. #5704
    js1974's Avatar Member
    Reputation
    27
    Join Date
    Jan 2008
    Posts
    199
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I've been doing everything I can to see if I can figure out why some rotations just quit working on some bosses or if this is talent related or what the issue is. The debug mode option can that be logged with chat logging turned on or does it log automatically in PQR?

  5. #5705
    kabman's Avatar Master Sergeant
    Reputation
    33
    Join Date
    Mar 2011
    Posts
    104
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Would anyone know how to write a function for a mage so that if insta pyro comes up, It will cast POM if it is up, Alter time if POM Goes up, and then spam the living shit out of Pyroblasts?


    Granted im rather sure that would be multiple functions.


    So far i have...

    Alter Time:
    Code:
    if UnitBuffID("player",48108) and UnitBuffID("player",12043)
    then return true
    end
    POM:
    Code:
    if UnitBuffID("player",48108) then
    return true
    Last edited by kabman; 11-06-2012 at 03:53 PM.

  6. #5706
    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)
    anyone have a link for updated rogue profs?

  7. #5707
    derfred's Avatar Member
    Reputation
    2
    Join Date
    Oct 2007
    Posts
    82
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Kinkeh

    Sometimes your DW frost rotation locks up saying "not fully depleted runes" and just spams plague leech until the dots tick off. Is there any way to fix this?

  8. #5708
    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)
    @Xelper: It's something similar to what I coded. (Only that mine was a lot less in-depth like that) By the looks of it, it should work perfectly.
    @tigole1: I already have a pretty decent Affliction profile I created solely for my Herald of the Titans alt character, but I'm pretty sure I can update it to level 90 standards as soon as my Demonology profile is done.

    Only missing the AoE rotation guys, and it should be close to perfect.

    One thing I noticed while testing it out is that after a minute or two, it completely stops, until you move for a second or two. I tried stopping the profile and casting a spell manually, and similar things, but, the entire WoW Client was un-responsive. Abilities couldn't be triggered or even forced, until you had moved for 1-2 seconds. I'm not sure what the cause of that is. It shouldn't be morphed spells or the UnitPower that is behind it. (I only experience this on Demonology: Make a basic profile to spam cast Shadowbolt, it will stop the rotation -- and your client at 1000 Demonic Energy.) -- Not sure if this is something you can look into, Xelper?

  9. #5709
    zahremar's Avatar Active Member
    Reputation
    30
    Join Date
    Sep 2007
    Posts
    26
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @derfred
    From simulationcraft : plague_leech,if=talent.plague_leech.enabled&(dot.blood_plague.remains<3|dot.fros t_fever.remains<3):
    SpellID=0
    ------------------------------------
    local start, duration, runeReady1 = GetRuneCooldown(1)
    local start, duration, runeReady2 = GetRuneCooldown(2)
    local start, duration, runeReady3 = GetRuneCooldown(3)
    local start, duration, runeReady4 = GetRuneCooldown(4)
    local start, duration, runeReady5 = GetRuneCooldown(5)
    local start, duration, runeReady6 = GetRuneCooldown(6)
    local FF,_,_,_,_,_,FFtimer = UnitDebuffID("target",55095,"player")
    local BP,_,_,_,_,_,BPtimer = UnitDebuffID("target",55078,"player")
    if PQR_SpellAvailable(123693) then
    if ((runeReady1==false and runeReady2==false)
    or (runeReady3==false and runeReady4==false)
    or (runeReady5==false and runeReady6==false)) then
    if (FF and FFtimer - GetTime() < 3) or (BP and BPtimer - GetTime() < 3) then
    SpellCancelQueuedSpell() CastSpellByName(GetSpellInfo(123693),nil) return true end end end

  10. #5710
    derfred's Avatar Member
    Reputation
    2
    Join Date
    Oct 2007
    Posts
    82
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    local start, duration, runeReady1 = GetRuneCooldown(1)
    local start, duration, runeReady2 = GetRuneCooldown(2)
    local start, duration, runeReady3 = GetRuneCooldown(3)
    local start, duration, runeReady4 = GetRuneCooldown(4)
    local start, duration, runeReady5 = GetRuneCooldown(5)
    local start, duration, runeReady6 = GetRuneCooldown(6)
    local FF,_,_,_,_,_,FFtimer = UnitDebuffID("target",55095,"player")
    local BP,_,_,_,_,_,BPtimer = UnitDebuffID("target",55078,"player")
    if PQR_SpellAvailable(123693) then
    if ((runeReady1==false and runeReady2==false)
    or (runeReady3==false and runeReady4==false)
    or (runeReady5==false and runeReady6==false)) then
    if (FF and FFtimer - GetTime() < 3) or (BP and BPtimer - GetTime() < 3) then
    SpellCancelQueuedSpell() CastSpellByName(GetSpellInfo(123693),nil) return true end end end[

    Awesome thanks!
    Last edited by derfred; 11-06-2012 at 10:13 PM.

  11. #5711
    llamageek's Avatar Member
    Reputation
    2
    Join Date
    Nov 2009
    Posts
    34
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Rubim View Post
    Rubim's Monk Profile

    http://dl.dropbox.com/u/22479350/pqr..._Abilities.xml
    http://dl.dropbox.com/u/22479350/pqr..._Rotations.xml

    http://dl.dropbox.com/u/22479350/pqr..._Abilities.xml
    http://dl.dropbox.com/u/22479350/pqr..._Rotations.xml

    ===================

    All my rotations are for QUESTING/Dungeon and Raids.

    Remember to remove Chii Wave from Windwalker rotation if you are raiding/dungeon.

    Brewmaster
    Code:
    - Legacy of Emperor if no stat buff
    - Elusive Brew with 10 charges.
    - Black Ox Statue
    - Guard on Cooldown
    - Keg Smash on Cooldown
    - Breath of Fire if 10 seconds on Shuffle
    - Chi Wave if HP below 50%
    - Spinning Crane Kick if AoE
    - Rushing Jade Wind (Talent) if AoE
    - Expel Harm (Spam)
    - Expel Harm if HP - 99% else
    - Jab
    Windwalker
    Code:
    - Legacy of Emperor if no stat buff
    - Legacy of White Tiger
    - Touch of Death
    - Energizing Brew if Chi < 2 and Energy < 35 (So you wont be locked out)
    - Tigerye Brew with 10 stacks
    - Invoke Xuen (WIP)
    - Chi Wave (Remove this if you are raiding)
    - Apply Rising Sun Kick for AoE
    - Spinning Crane Kick if AoE
    - Tiger Palm to maintain/apply stacks.
    - Rising Sun Kick on CD
    - Breaker on CD
    - Jab on CD
    Download my profile from PQR: http://dl.dropbox.com/u/22479350/pqr/monk/Rubim.txt
    Having lock ups on the windwalker profile during elegon mostly and a few lock ups during garalon in heart of fear. Also Xuen never pops(not a major issue).

  12. #5712
    gamingjunkie's Avatar Member
    Reputation
    4
    Join Date
    Feb 2011
    Posts
    73
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @cpowroks take a look at sheepmoon's resto profile as well, maybe his might help. from what i know, he used some of sheurons code as well.

    http://www.ownedcore.com/forums/worl...-profiles.html ([PQR] MOP profiles)

  13. #5713
    K-Z's Avatar Member
    Reputation
    7
    Join Date
    May 2008
    Posts
    59
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    anyone have a good mage pvp profiles, frost and fire? plz!

  14. #5714
    momo1029's Avatar Sergeant
    Reputation
    2
    Join Date
    Feb 2009
    Posts
    69
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    anyone know why i encounter this error ?
    the rotation works fine for awhile, and then it spits out GetSpellBookItemName() error

    PHP Code:
    local Immolate UnitDebuffID("target",348,"PLAYER")

    if 
    select(5NUI("player")) >= and Immolate == nil then
    RunMacro
    ("aoe")
    end 
    Last edited by momo1029; 11-07-2012 at 02:57 AM.

  15. #5715
    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 momo1029 View Post
    anyone know why i encounter this error ?
    the rotation works fine for awhile, and then it spits out GetSpellBookItemName() error

    PHP Code:
    local Immolate UnitDebuffID("target",348,"PLAYER")

    if 
    select(5NUI("player")) >= and Immolate == nil then
    RunMacro
    ("aoe")
    end 
    What's NUI("Player")? Never seen it before.

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 05:23 AM. 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