PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 29 of 779 FirstFirst ... 25262728293031323379129529 ... LastLast
Results 421 to 435 of 11681
  1. #421
    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)
    Strange, I get that invalid attachment error. I'll try Ralphious profile again now when I've updated PQR.

    Edit: The update fixed it! Ralphiouss, theres nothing wrong with your profile, I just forgot to update PQR from switching computers with my gf. Happy to finally have it sorted out but I feel stupid now lol. By the way Ralphi is there any way I can turn off autotargetting? I like choosing targets myself and it does target mobs for me.
    Last edited by Ninjaderp; 05-17-2012 at 05:24 PM.

    PQR - Rotation Bot
  2. #422
    Ralphiuss's Avatar Active Member
    Reputation
    44
    Join Date
    Sep 2011
    Posts
    230
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ninjaderp View Post
    Strange, I get that invalid attachment error. I'll try Ralphious profile again now when I've updated PQR.

    Edit: The update fixed it! Ralphiouss, theres nothing wrong with your profile, I just forgot to update PQR from switching computers with my gf. Happy to finally have it sorted out but I feel stupid now lol. By the way Ralphi is there any way I can turn off autotargetting? I like choosing targets myself and it does target mobs for me.
    Are you talking about it'll switch targets maybe if something dies? If so is there a method to force the spell not to cast again if there is no target?

    My knowledge is very limited. A lot of what is being used is stolen with proper credit being given out within the profile. I know I don't have any sort of targeting system enabled to it. A lot of the code just seems basic and a lot of just conditions.

  3. #423
    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)
    Ah, its not that much a problem really I think its good as it is. One thing though, can you make so it doesnt cast Guardian out of combat? I mean I got shift+rightclick for my flying-mount and it looks funny when Im in orgrimmar mounting with my guardian running after me ^^ The rape-macro (zeal&aw) doesnt activate out of combat so I think you could make the same adjustments for GoaK ^^

  4. #424
    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 Ralphiuss View Post
    Are you talking about it'll switch targets maybe if something dies? If so is there a method to force the spell not to cast again if there is no target?

    My knowledge is very limited. A lot of what is being used is stolen with proper credit being given out within the profile. I know I don't have any sort of targeting system enabled to it. A lot of the code just seems basic and a lot of just conditions.
    The only thing I see that has a target switcher in it is -- Encounters --, but that's only on spine. Everything else looks good except for the few spells that you have /stopcasting in the Actions menu. I didn't see anything that would go wrong in your combat checker either since all it's basically checking is if your in-combat. Maybe add in a check to it as well for if your on mount return true.

    Again, otehr than the above, everything seems fine.

    Originally Posted by Ninjaderp View Post
    Ah, its not that much a problem really I think its good as it is. One thing though, can you make so it doesnt cast Guardian out of combat? I mean I got shift+rightclick for my flying-mount and it looks funny when Im in orgrimmar mounting with my guardian running after me ^^ The rape-macro (zeal&aw) doesnt activate out of combat so I think you could make the same adjustments for GoaK ^^
    GoaK shouldn't activate unless your holding down Left Shift. But anyways, a good fix for this is:
    Code:
    local holyPower = UnitPower("player", 9)
    local divinePurpose = PQR_UnitBuffID("player", 86172)
    local inCombat = UnitAffectingCombat("Player")
    local isMounted = IsMounted()
    
    
    if IsLeftAltKeyDown() and (holyPower >=3 or divinePurpose ~= nil) then
    	RunMacroText("/cast Avenging Wrath")
    	RunMacroText("/cast Zealotry")
    return true end
    
    
    if IsLeftShiftKeyDown() and GetSpellCooldown(86150) == 0 and inCombat and not isMounted then
    	CastSpellByID(86150)
    return true end
    Replace all of what's in -- CDS -- with the above.
    Last edited by firepong; 05-17-2012 at 06:09 PM.

  5. #425
    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)
    Firepong, that did the trick! You da man, and Ralphiuss too ofc! ;D

  6. #426
    Ralphiuss's Avatar Active Member
    Reputation
    44
    Join Date
    Sep 2011
    Posts
    230
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by firepong View Post
    The only thing I see that has a target switcher in it is -- Encounters --, but that's only on spine. Everything else looks good except for the few spells that you have /stopcasting in the Actions menu. I didn't see anything that would go wrong in your combat checker either since all it's basically checking is if your in-combat. Maybe add in a check to it as well for if your on mount return true.

    Again, otehr than the above, everything seems fine.





    GoaK shouldn't activate unless your holding down Left Shift. But anyways, a good fix for this is:
    Code:
    local holyPower = UnitPower("player", 9)
    local divinePurpose = PQR_UnitBuffID("player", 86172)
    local inCombat = UnitAffectingCombat("Player")
    local isMounted = IsMounted()
    
    
    if IsLeftAltKeyDown() and (holyPower >=3 or divinePurpose ~= nil) then
    	RunMacroText("/cast Avenging Wrath")
    	RunMacroText("/cast Zealotry")
    return true end
    
    
    if IsLeftShiftKeyDown() and GetSpellCooldown(86150) == 0 and inCombat and not isMounted then
    	CastSpellByID(86150)
    return true end
    Replace all of what's in -- CDS -- with the above.

    I did the /stopcasting maybe thinking if the condition for TV came up it would stop casting and do TV right away.


    EDIT: Also SVN updated with firepong's changes. Version # did not change. Just update via internal update tool.

    Goal next is to get a beta rotation working.
    Last edited by Ralphiuss; 05-17-2012 at 07:12 PM.

  7. #427
    Devilsadvocate's Avatar Member
    Reputation
    70
    Join Date
    May 2008
    Posts
    254
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm trying to setup a Unique Priority Rotation for my Lock on Raid Encounters. So far I have it pulling top DPS and DMG however there is 1 thing missing....

    How do I code the bot to recognize the Distance to Target for proper Shadowflame useage?
    I'm not going to be releasing anything for a while. I'm back on retail for new content.

  8. #428
    onya's Avatar Member
    Reputation
    67
    Join Date
    May 2008
    Posts
    152
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Devilsadvocate View Post
    I'm trying to setup a Unique Priority Rotation for my Lock on Raid Encounters. So far I have it pulling top DPS and DMG however there is 1 thing missing....

    How do I code the bot to recognize the Distance to Target for proper Shadowflame useage?

    something like

    if PQR_UnitDistance("player,"target") < 10 then ...

    will check you're 10 yards or closer. You're probably going to want to check PQR_UnitFacing as well but it seems broken to me in PQR 2.15
    Shaman resto and elemental profiles for PQRotation can be downloaded from here - https://db.tt/g2pIFrBc
    Tradeskill profile (Jewelcrafting and disenchant) download here - https://db.tt/aPpOTKJH

  9. #429
    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 onya View Post
    something like

    if PQR_UnitDistance("player,"target") < 10 then ...

    will check you're 10 yards or closer. You're probably going to want to check PQR_UnitFacing as well but it seems broken to me in PQR 2.15
    Shouldn't need PQR_UnitFacing. If he's facing the wrong way, that's some major DPS lose there

  10. #430
    onya's Avatar Member
    Reputation
    67
    Join Date
    May 2008
    Posts
    152
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by firepong View Post
    Shouldn't need PQR_UnitFacing. If he's facing the wrong way, that's some major DPS lose there
    lol isn't shadowbolt a 180 whereas shadowflame has a narrower cone?
    Shaman resto and elemental profiles for PQRotation can be downloaded from here - https://db.tt/g2pIFrBc
    Tradeskill profile (Jewelcrafting and disenchant) download here - https://db.tt/aPpOTKJH

  11. #431
    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 onya View Post
    lol isn't shadowbolt a 180 whereas shadowflame has a narrower cone?
    It's like a 90degree cone. But im sayin if your not facing in the general direction of the boss, your bad

  12. #432
    Lexi777's Avatar Member
    Reputation
    8
    Join Date
    May 2012
    Posts
    126
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does anyone have a released Sub Rogue PvP profile updated?

  13. #433
    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)
    Hey, if anyone could help, i'm looking for all the macro's that kaolla uses for his unholy pvp rotation. i can't seem to find them :/

  14. #434
    Kinkeh's Avatar Established Member
    Reputation
    243
    Join Date
    Jan 2012
    Posts
    450
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by farnumdizzle View Post
    Hey, if anyone could help, i'm looking for all the macro's that kaolla uses for his unholy pvp rotation. i can't seem to find them :/
    http://www.ownedcore.com/forums/worl...ml#post2221981 ([BETA] PQRotation - an automated ability priority queue.)
    Old thread :P.

  15. #435
    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)
    ah, thanks a lot! I just started doing some pvping on my DK.

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 07:32 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