PQR - Rotation Bot menu

User Tag List

Page 311 of 779 FirstFirst ... 211261307308309310311312313314315361411 ... LastLast
Results 4,651 to 4,665 of 11681
  1. #4651
    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)
    Use Dominium's Ret Pvp profile, It has solo'd every mob/group/elite/rare in Panda Land -World Raid bosses.
    Thanks alot for the tip but im looking for a more purely raid-pve optimized rotation profile

    PQR - Rotation Bot
  2. #4652
    odano1988's Avatar Member
    Reputation
    3
    Join Date
    Jun 2011
    Posts
    194
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    anyone have a level 90 release for fire mage or elemental shaman?Still using ones that we're made for 85s.

  3. #4653
    mrleo's Avatar Member
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    54
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    im in need of an AOE (arena) disarm code-pummel code if anyone has a good one ty (bubba i trust you )

  4. #4654
    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)
    Nova [Windwalker] RC: http://dl.dropbox.com/u/23527046/ww.zip

    still a work in progress but its a windwalker monk profile
    atm it uses celerity, zen sphere, Power Strikes, Leg Sweep, Dampen Harm, Invoke Xuen for talents
    for glyphs its using afterlife, spinning crane kick, and touch of death

    key mods-
    hold left shift to pause
    left alt toggles AoE
    left Shift toggles Fist of Fury

    I'd like feedback before i start coding Brewmaster.

    Please if someone helped you donate rep to them.

  5. #4655
    MACH9 WoW Services's Avatar Member CoreCoins Purchaser
    Reputation
    3
    Join Date
    Jun 2012
    Posts
    219
    Thanks G/R
    1/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crystal_tech View Post
    Nova [Windwalker] RC: http://dl.dropbox.com/u/23527046/ww.zip

    still a work in progress but its a windwalker monk profile
    atm it uses celerity, zen sphere, Power Strikes, Leg Sweep, Dampen Harm, Invoke Xuen for talents
    for glyphs its using afterlife, spinning crane kick, and touch of death

    key mods-
    hold left shift to pause
    left alt toggles AoE
    left Shift toggles Fist of Fury

    I'd like feedback before i start coding Brewmaster.
    Can't wait to try

  6. #4656
    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)
    Originally Posted by derfred View Post
    Tried both Xelpers and Averekeys Ret-Paladin profiles but none of them seems to work properly, anyone got an easy fix for this (maybe some small line of code that just needs editing)?
    What exactly do you mean no properly working? Averekeys works just fine.

  7. #4657
    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 derfred View Post
    Tried both Xelpers and Averekeys Ret-Paladin profiles but none of them seems to work properly, anyone got an easy fix for this (maybe some small line of code that just needs editing)?
    Then maybe you should give pointers on what in their profiles arent working properly, as you put it. Instead of just saying "-doesnt work!! fix plz!" It would help them help you.

  8. #4658
    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)
    I cant find the place where i wrote
    -doesnt work!! fix plz!
    you must have misstaken me for someone else

    Secondly start to use the search function, its there for a reason

    Xelper, has there ever been a fix for ret paladins spam casting their seal?
    And since he already stated the problem its pretty unnecessary for me to repeat it dont you think?

  9. #4659
    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)
    Originally Posted by derfred View Post
    I cant find the place where i wrote you must have misstaken me for someone else

    Secondly start to use the search function, its there for a reason



    And since he already stated the problem its pretty unnecessary for me to repeat it dont you think?
    Averekeys Ret profile works fine, If you are experiencing an issue with his from a seal problem you are using an old verison.

    @
    Averekeys


    I figured out the issue with using the talent sanctified wrath instead of DP or HA. When you have sanctified wrath it gives you access to using Hammer of Wrath at all times instead of just during 20% HP or Avenging Wrath. Because of that the check for Hammer of Wrath in the code is.

    PHP Code:
    local EnemyHP 100 UnitHealth("target") / UnitHealthMax("target")

    -- 
    prevent hangupif not PQR_UnitFacing("player""target"then    return falseend
    -- prevents waste of holy powerif UnitBuffID("player"105809) and UnitPower("player"9) >= 3 then    return falseend
    -- hammer of wrathif UnitBuffID("player"31884) or EnemyHP <= 20 then    if RangeCheck(24275"target") and UnitPower("player"9) < 5 then        CastSpellByName(GetSpellInfo(24275), "target")    endend 
    We would also need to add the check for the Sanctified Wrath talent, Since it's not checking for that it doesn't cast Hammer of Wrath at all times like it should be able to do. I'm not sure how to add that additional check myself so if anyone knows how to check it and add it into the ability it would be appreciated!
    Last edited by js1974; 10-05-2012 at 12:36 PM.

  10. #4660
    chumii's Avatar Master Sergeant
    Reputation
    7
    Join Date
    Aug 2011
    Posts
    104
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    looking for a warrior pvp profile.. arms or fury, dont know whats better in pvp right now.. any out there?

  11. #4661
    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 cameronmc88 View Post
    Can't wait to try
    its right shift for fists of fury sorry for the double left shift

    Please if someone helped you donate rep to them.

  12. #4662
    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)
    The profile from sheuron for shami heal was great ... but now i`m looking for a monk healer profile ..

    @sheuron: are you working on a mistweaver profile?
    @Novateam: your new windwalker profile is perfect for leveling monks, thx for that!

  13. #4663
    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 mrleo View Post
    im in need of an AOE (arena) disarm code-pummel code if anyone has a good one ty (bubba i trust you )
    Is my current one not working?

    Sent from my ThunderBolt using Tapatalk 2
    ^0^Team Nova's PQR NCC ^0^

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

  14. #4664
    Nerder's Avatar Contributor
    Reputation
    117
    Join Date
    Aug 2012
    Posts
    263
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I know there has been a high demand on monk profiles, I've been trying to work one for Brewmaster, Kuukuu's is very good, just there are things to fine tune if you want it to be the most optimal rotation performance. I myself have tried writing a Brewmaster one but as I'm not a the greatest at the scripting I'm having errors with mine... If I could get someone who would work with me on this that would be great! I've been 90 on my monk for a week now, the current Nova Windwalker one is very good at lvl 90 also, I do not see it needing much done to it at all. I've got compliments in dungeons saying for how low my gear was when I dinged 90 to now that monks DPS is OP, all to thank to the profile.

    I know the rotations for both manually yet have issues with the brewmaster one making it 100% because not all the time do I have the best reaction time.

    So, long story short if I can get someone knowledgeable on the codes to assist me in my brewmaster it would be greatly appreciated! I have the 1st hand experience and can be a tester. I'm just running out of ideas by myself on how to fix this.

    Please give a helping hand!

  15. #4665
    averykey's Avatar Contributor
    Reputation
    158
    Join Date
    Dec 2011
    Posts
    448
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by js1974 View Post
    Averekeys Ret profile works fine, If you are experiencing an issue with his from a seal problem you are using an old verison.

    @
    Averekeys


    I figured out the issue with using the talent sanctified wrath instead of DP or HA. When you have sanctified wrath it gives you access to using Hammer of Wrath at all times instead of just during 20% HP or Avenging Wrath. Because of that the check for Hammer of Wrath in the code is.

    PHP Code:
    local EnemyHP 100 UnitHealth("target") / UnitHealthMax("target")

    -- 
    prevent hangupif not PQR_UnitFacing("player""target"then    return falseend
    -- prevents waste of holy powerif UnitBuffID("player"105809) and UnitPower("player"9) >= 3 then    return falseend
    -- hammer of wrathif UnitBuffID("player"31884) or EnemyHP <= 20 then    if RangeCheck(24275"target") and UnitPower("player"9) < 5 then        CastSpellByName(GetSpellInfo(24275), "target")    endend 
    We would also need to add the check for the Sanctified Wrath talent, Since it's not checking for that it doesn't cast Hammer of Wrath at all times like it should be able to do. I'm not sure how to add that additional check myself so if anyone knows how to check it and add it into the ability it would be appreciated!
    Adding it in, thanks rep+
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

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 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