PQR - Rotation Bot menu

User Tag List

Page 330 of 779 FirstFirst ... 230280326327328329330331332333334380430 ... LastLast
Results 4,936 to 4,950 of 11681
  1. #4936
    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)
    Hm, I think that's what i did in my enhance profile and ive never had problems with that.


    Thanks firepong.
    WoW LUA Script Developer
    Need Something Custom? WarmaneScripts.com
    Skype - grapejuice111

    PQR - Rotation Bot
  2. #4937
    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)
    Is there a updated frost mage profile?

  3. #4938
    Weird0's Avatar Contributor
    Reputation
    137
    Join Date
    Jan 2009
    Posts
    352
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by nabada View Post
    bannable?
    yes it is a bannable offence to use this BUT if you keep quite and remove stuff that is like "humanly impossible" by common sense like interrupting after like 0.1 seconds or disabling auto battle rezzing (a few profiles actually have that) also never telling anyone(not even your closest wow "friends") the probability of getting caught is very slim

  4. #4939
    kuukuu's Avatar Contributor
    Reputation
    269
    Join Date
    Jul 2012
    Posts
    619
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by firepong View Post
    If anyone needs to, take a look at my profile. I haven't had it happen once in my profile, and I use it in conjunction with HonorBuddy for hours on end. Never had it lock up. Mainly, get rid of all "return true" and set "Skip Unknown" to false. After that, wherever you would have return true, put CastSpellByName(tostring(GetSpellInfo(spellIDHere))).
    I have been doing that since the bug was reported and haven't had anyone complain of locks up since then either.
    Former PQR Developer

  5. #4940
    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 garoboldy View Post
    Are we still stuck with Sheurons Prot Warrior PVE as the only option right now? I've not seen any alternatives pop up.
    Anything wrong with Sheurons prot-profile? It works very well for me.

  6. #4941
    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)
    Is their any documentation i can refer to, to get a list of commands for coding, want to try my hand at creating a profile for raiding.

  7. #4942
    Bgreen12's Avatar Banned
    Reputation
    32
    Join Date
    Aug 2012
    Posts
    128
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by averykey View Post
    It's the same as lua, c# just has different syntax.

    I've almost finished my ret cc, will work with raidbot/lazyraider.
    does it auto detect adds and auto switch rotation to the correct aoe when that amount of adds are out and in a certain range

  8. #4943
    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 Bgreen12 View Post
    does it auto detect adds and auto switch rotation to the correct aoe when that amount of adds are out and in a certain range
    Yeah.

    private int CurrentAddCount()
    {
    List<WoWUnit> AddList = ObjectManager.GetObjectsOfType<WoWUnit>(false).FindAll(unit => unit.Guid != Me.Guid
    && unit.IsTargetingMeOrPet
    && !unit.IsFriendly
    && !unit.IsTotem
    && !unit.IsPet
    && unit != Me.CurrentTarget
    && !Styx.CommonBot.Blacklist.Contains(unit.Guid));
    return AddList.Count;
    }

    Then you just put the condition

    /**
    * # - whatever number you want
    **/
    if CurrentAddCount > #)
    {
    do stuff
    }
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

  9. #4944
    happydado's Avatar Active Member
    Reputation
    20
    Join Date
    Feb 2011
    Posts
    158
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    There are some mage pvp profile?
    i have use search but the result are out of date

  10. #4945
    Bgreen12's Avatar Banned
    Reputation
    32
    Join Date
    Aug 2012
    Posts
    128
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by averykey View Post
    Yeah.

    private int CurrentAddCount()
    {
    List<WoWUnit> AddList = ObjectManager.GetObjectsOfType<WoWUnit>(false).FindAll(unit => unit.Guid != Me.Guid
    && unit.IsTargetingMeOrPet
    && !unit.IsFriendly
    && !unit.IsTotem
    && !unit.IsPet
    && unit != Me.CurrentTarget
    && !Styx.CommonBot.Blacklist.Contains(unit.Guid));
    return AddList.Count;
    }

    Then you just put the condition

    /**
    * # - whatever number you want
    **/
    if CurrentAddCount > #)
    {
    do stuff
    }
    Interesting I'm gonna try to write one again I tried to before but couldn't get them to work

    My Pvp/PvE arms fury prot warrior: http://www.ownedcore.com/forums/worl...-profiles.html ([PQR] Arms and Prot PvP/PvE profiles)

  11. #4946
    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 Bgreen12 View Post
    Interesting I'm gonna try to write one again I tried to before but couldn't get them to work

    My Pvp/PvE arms fury prot warrior: http://www.ownedcore.com/forums/worl...-profiles.html ([PQR] Arms and Prot PvP/PvE profiles)
    Look for guides or alter a profile that already works, I did a combination of both.
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

  12. #4947
    Bgreen12's Avatar Banned
    Reputation
    32
    Join Date
    Aug 2012
    Posts
    128
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by averykey View Post
    Look for guides or alter a profile that already works, I did a combination of both.
    Yea when I tried to do it I didn't know anything about writing anything for pqr or hb, but now I'd say Im pretty proficient in lua my warriors working seamlessly. I might give old hb a shot again just for the extra functionality now

    My Pvp/PvE arms fury prot warrior: http://www.ownedcore.com/forums/worl...-profiles.html ([PQR] Arms and Prot PvP/PvE profiles)

  13. #4948
    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)
    To averykey; Either im doing something very wrong, but I cant get your new Ret profile to work. It cast seal, exorcism and inquisition but not Judgement or Crusader Strike. Is this something I can correct maybe just by rearranging the priority-rotationlist?

    I tried it a bit more and it seems like it cast Judgement only if im facing away from the mob
    Last edited by derfred; 10-12-2012 at 11:11 AM.

  14. #4949
    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)
    Originally Posted by Unasrage View Post
    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

    =)=)
    Bump ^_^ so it doest get lost ^_^

  15. #4950
    Bgreen12's Avatar Banned
    Reputation
    32
    Join Date
    Aug 2012
    Posts
    128
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Unasrage View Post
    Bump ^_^ so it doest get lost ^_^
    How much

    My Pvp/PvE arms fury prot warrior: http://www.ownedcore.com/forums/worl...-profiles.html ([PQR] Arms and Prot PvP/PvE profiles)

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 06:19 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