PQR - Rotation Bot menu

User Tag List

Page 114 of 779 FirstFirst ... 1464110111112113114115116117118164214614 ... LastLast
Results 1,696 to 1,710 of 11681
  1. #1696
    ace99ro's Avatar Sergeant Major
    Reputation
    9
    Join Date
    Dec 2011
    Posts
    173
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    all live profiles will malfunction , because the talent tree's in mop are 100% different

    PQR - Rotation Bot
  2. #1697
    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 Valma View Post
    Post here blocks referencing to this skills from your abilities file.We can't help you till we don't see source code :/
    I mean...it's just a basic buff check(which is why I didn't think I'd have to post code), I personally think it's a problem with the beta so I was just wondering if it happened to anyone else. I don't know how to explain it other then it's a brand new rotation and it sits there on this ability until obliterate comes off CD, not going onwards to frost strike or any other ability and just sits there.
    local KM = UnitBuffID("player", 51124)

    if KM ~= nil then
    return true
    end
    I checked the IDs, everythings fine. When obliterate finally comes off CD, it casts it and continues on with the rotation(downtime being a obvious dps decrease and not a good thing), frost strike will be sitting there capped meanwhile I have another ability to frost stirke when you're above 20 RP, but it still waits for obliterate.

    Originally Posted by ace99ro View Post
    all live profiles will malfunction , because the talent tree's in mop are 100% different
    I know this, this is a brand new profile I've started for the beta. Everything was working fine, rotation coming from the current sims being done for the DK class. just like I said, it sits there on the one ability not going onto anything else until it can finally cast the one ability.
    Last edited by Kinkeh; 07-24-2012 at 04:54 AM.

  3. #1698
    ace99ro's Avatar Sergeant Major
    Reputation
    9
    Join Date
    Dec 2011
    Posts
    173
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    wanted to try Nova's Holy Beta profile , but it spams LUA erros once i activate it , all is there , latest update , data file everything , ideeas ?

  4. #1699
    Valma's Avatar Contributor
    Reputation
    152
    Join Date
    Nov 2011
    Posts
    209
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    local KM = UnitBuffID("player", 51124)
    
    if KM ~= nil then
    return true
    else
    return false
    end
    Try this :/ Dunno really,your code is the simpliest thing that could be :/

    And PM me your full ability and rotation files.Will try to look at them.
    MEDVED+VODKA+BALALAYKA

  5. #1700
    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 Valma View Post
    Code:
    local KM = UnitBuffID("player", 51124)
    
    if KM ~= nil then
    return true
    else
    return false
    end
    Try this :/ Dunno really,your code is the simpliest thing that could be :/

    And PM me your full ability and rotation files.Will try to look at them.
    I'm still looking into it, I think I found the problem. It's not being able to cast it by spell id for some reason but when I use RunMacroText it seems to work. I'll keep playing around and message you if I need anything :P thanks.

  6. #1701
    Valma's Avatar Contributor
    Reputation
    152
    Join Date
    Nov 2011
    Posts
    209
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ehm,I posted around 1 or 2 pages ago,that CastSpellByID is bugged on Beta ATM :/ I even posted solution to this.

    >>>>>>>>>>>>>>> CastSpellByName(GetSpellInfo(spellid)) <<<<<<<<<<<<<<<<<<<<<<<

    Wasn't thinking that you are not reading forum and skipped this step in case that you already tested it
    MEDVED+VODKA+BALALAYKA

  7. #1702
    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 Kinkeh View Post
    I'm trying to make a frost DK profile for MoP, but I'm having a problem. I'm having it obliterate on KM procs, when a killing machine procs and obliterate is on CD, it basically pauses the rotation until it comes off CD, and doesn't continue on to the next line/ability in the rotation(so for this case, I'd rather it frost strike if it can't obliterate. I've tried checking if obliterate wasn't available to cast a different spell but it never worked). Is there any way to fix this or has this happened to anyone else? it doesn't do it on live. :3
    add if PQR_SpellAvailable(GetSpellinfo(spellid)) that way if it can't use the spell it will skip it.

    Please if someone helped you donate rep to them.

  8. #1703
    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 Valma View Post
    Ehm,I posted around 1 or 2 pages ago,that CastSpellByID is bugged on Beta ATM :/ I even posted solution to this.

    >>>>>>>>>>>>>>> CastSpellByName(GetSpellInfo(spellid)) <<<<<<<<<<<<<<<<<<<<<<<

    Wasn't thinking that you are not reading forum and skipped this step in case that you already tested it
    in beta just try castspell(spellid) because thats the new castspellbyid api

    Please if someone helped you donate rep to them.

  9. #1704
    Valma's Avatar Contributor
    Reputation
    152
    Join Date
    Nov 2011
    Posts
    209
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crystal_tech View Post
    in beta just try castspell(spellid) because thats the new castspellbyid api
    It isn't fully impliment yet (: Some new skills work with this and some doesn't. With CastSpellByName(GetSpellInfo(spellid)) all new skills works. (;
    MEDVED+VODKA+BALALAYKA

  10. #1705
    Frissle's Avatar Member The Pope of Darkness CoreCoins Purchaser
    Reputation
    9
    Join Date
    May 2007
    Posts
    110
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I tried out Novas Spriest live profile yesterday and got lua error. Does this have to do with the MOP offset? or is it just that i have not dinged level 10 on my priest yet?

  11. #1706
    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 djfreia View Post
    I tried out Novas Spriest live profile yesterday and got lua error. Does this have to do with the MOP offset? or is it just that i have not dinged level 10 on my priest yet?
    its a lvl 85 profile at the core so lvling with it will prob give errors

    @valma
    i figured it was still being switched over.

    Please if someone helped you donate rep to them.

  12. #1707
    Raakz's Avatar Private
    Reputation
    1
    Join Date
    May 2012
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    where i can found a shadow prist profile for beta server and data files etc?

  13. #1708
    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 Raakz View Post
    where i can found a shadow prist profile for beta server and data files etc?
    bubba-pqr-profiles - Bubba & Mentally&#39;s PQR Profiles - Google Project Hosting

  14. #1709
    Raakz's Avatar Private
    Reputation
    1
    Join Date
    May 2012
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    yes but where? and what files i need?

  15. #1710
    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)
    I dont know, try both shadow priest profiles and see which one works for mop.

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