PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 87 of 779 FirstFirst ... 37838485868788899091137187587 ... LastLast
Results 1,291 to 1,305 of 11681
  1. #1291
    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 imdasandman View Post
    hehe I feel your pain that used to be me... I got my hm dw kill while it was( still is) current content. First time I had ever fully cleared current content. Been close so many other times in other xpacs .... yea my raiding hardcoreish days are done
    I still would like to create a guild out of the good folks from this thread

    PQR - Rotation Bot
  2. #1292
    OnionsTich's Avatar Banned
    Reputation
    0
    Join Date
    Jul 2012
    Posts
    137
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    sheuron can you update your PQR_XRN file so that it dispels death but does not dispell earth? on heroic spine of deathwing

  3. #1293
    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 Decaed View Post
    Hey guys =)

    Just wondering if someone would be able to give me some advice in trying to code Blood Tap for my early MoP DK profile?

    Here is what I'm working with.

    Code:
    local Blood Charge = UnitBuffID("player", 114851)
    
    if Blood Charge == nil then
    return true
    end
    I'm still new to writing profiles, but I'm doing as much research as I can to try and do it all on my own. But I'm a little stuck

    The way the new Blood Tap works is you need to have 5 Blood Charges before you can use it. I'm not sure how to add that into the above piece of code.

    Could someone be so kind as to give me a hint on how to apply that to this code?

    Thank you in advance!

    Have you tried, might cause it to cast when it's ready.

    Code:
    local Blood Charge = UnitBuffID("player", 114851)
    
    if Blood Charge ~= nil then
    return true
    end

  4. #1294
    Decaed's Avatar Master Sergeant
    Reputation
    22
    Join Date
    Jun 2012
    Posts
    134
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ralphiuss View Post
    Have you tried, might cause it to cast when it's ready.

    Code:
    local Blood Charge = UnitBuffID("player", 114851)
    
    if Blood Charge ~= nil then
    return true
    end
    Ah, I will give that a go and see what results I come up with.

    Thanks, Ralphiuss. =)

  5. #1295
    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 Decaed View Post
    Hey guys =)

    Just wondering if someone would be able to give me some advice in trying to code Blood Tap for my early MoP DK profile?

    Here is what I'm working with.

    Code:
    local Blood Charge = UnitBuffID("player", 114851)
    
    if Blood Charge == nil then
    return true
    end
    I'm still new to writing profiles, but I'm doing as much research as I can to try and do it all on my own. But I'm a little stuck

    The way the new Blood Tap works is you need to have 5 Blood Charges before you can use it. I'm not sure how to add that into the above piece of code.

    Could someone be so kind as to give me a hint on how to apply that to this code?

    Thank you in advance!
    Here you go, not sure if this will work just looked through some profiles and found the ids for blood charge/tap

    note: you can have 12 blood charges

    spell id: 45529
    target: target

    --Not sure if this will work, this is code from a trinket.
    local bloodCharge,_,_,bloodChargeCount = UnitAura("player","Blood Charge")

    --Maybe it falls off? so you might want a; bloodChargeCount == 5 or bloodChargeEndTime <= 2
    --local bloodChargeTime, _, _, _, _, _, bloodChargeEndTime = UnitBuffID("player", 114851) <-- spell id for bloodcharge
    --if bloodChargeTime ~= nil then
    -- bloodChargeEndTime = bloodChargeEndTime - GetTime()
    --end

    if bloodCharge ~= nil then
    if bloodChargeCount == 5 then
    return true
    end
    end
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

  6. #1296
    me28791's Avatar Member
    Reputation
    10
    Join Date
    Jul 2011
    Posts
    90
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ralphiuss View Post
    I still would like to create a guild out of the good folks from this thread
    potential for people to be stupid and say crap in chat as chat is scanned often even in guild, and the fact on top of that if you are aiming at hard modes it isn't all about big numbers

  7. #1297
    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 me28791 View Post
    potential for people to be stupid and say crap in chat as chat is scanned often even in guild, and the fact on top of that if you are aiming at hard modes it isn't all about big numbers
    Still have to be picky of course.

  8. #1298
    Decaed's Avatar Master Sergeant
    Reputation
    22
    Join Date
    Jun 2012
    Posts
    134
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by averykey View Post
    Here you go, not sure if this will work just looked through some profiles and found the ids for blood charge/tap

    note: you can have 12 blood charges

    spell id: 45529
    target: target

    --Not sure if this will work, this is code from a trinket.
    local bloodCharge,_,_,bloodChargeCount = UnitAura("player","Blood Charge")

    --Maybe it falls off? so you might want a; bloodChargeCount == 5 or bloodChargeEndTime <= 2
    --local bloodChargeTime, _, _, _, _, _, bloodChargeEndTime = UnitBuffID("player", 114851) <-- spell id for bloodcharge
    --if bloodChargeTime ~= nil then
    -- bloodChargeEndTime = bloodChargeEndTime - GetTime()
    --end

    if bloodCharge ~= nil then
    if bloodChargeCount == 5 then
    return true
    end
    end
    Thank you so much, Averykey. This is a great help!

  9. #1299
    robinmiles1's Avatar Member
    Reputation
    7
    Join Date
    Jun 2007
    Posts
    62
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey all just tried using this on the beta again with bubbas holy profile, downloaded the data files and everything and just getting spammed with an lua error atm. Tried doing a search but couldent see anything :-/

    Message: [string "-- Set the Variable Cast Time based off Has..."]:7: attempt to index global 'PQ_Spell' (a nil value)
    Time: 07/04/12 08:37:17
    Count: 412
    Stack: [string "-- Set the Variable Cast Time based off Has..."]:7: in function `?'
    [string "if PQR_Addon_Loaded == nil then..."]:760: in function `PQR_NextAbility'
    [string "if PQR_Addon_Loaded == nil then..."]:533: in function `PQR_ExecuteRotation'
    [string "if PQR_Addon_Loaded == nil then..."]:289: in function <[string "if PQR_Addon_Loaded == nil then..."]:214>

    Locals: spellsToCheck = <table> {
    1 = 635
    2 = 82326
    3 = 19750
    4 = 879
    5 = 82327
    }
    (for generator) = <function> defined =[C]:-1
    (for state) = <table> {
    1 = 635
    2 = 82326
    3 = 19750
    4 = 879
    5 = 82327
    }
    (for control) = 1
    i = 1
    v = 635
    (*temporary) = nil
    (*temporary) = 1
    (*temporary) = 635
    (*temporary) = nil
    (*temporary) = nil
    (*temporary) = nil
    (*temporary) = nil
    (*temporary) = "attempt to index global 'PQ_Spell' (a nil value)"

  10. #1300
    FrostDKsFTW's Avatar Sergeant Major
    Reputation
    20
    Join Date
    Nov 2011
    Posts
    169
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @OnionsTich
    Please stop spamming the forum asking about dispels on spine, sheuron already answered your question and told you exactly what to do. You have to be prepared to edit the code yourself.

    @imdasandman
    I havn't been playing my DK much recently but the last time I used your frost profile it was working fine The one thing I would ask for and this goes for other class profiles as well from other profile creators, please put in a button toggle for cooldowns. For frost I changed mine so I could toggle on and off Raise Dead. I prefer to only use it on boss fights really.
    Other than that all perfect. Can't remember if I rep+ you before so here's more!

  11. #1301
    Decaed's Avatar Master Sergeant
    Reputation
    22
    Join Date
    Jun 2012
    Posts
    134
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So I have been testing the code that Averykey gave me, but for some reason it doesn't want to work.

    Code:
    local bloodCharge,_,_,bloodChargeCount = UnitAura("player","Blood Charge")
    local bloodChargeTime, _, _, _, _, _, bloodChargeEndTime = UnitBuffID("player", 114851)
     
    bloodChargeCount == 5 or bloodChargeEndTime <= 2
    
    if bloodChargeTime == nil then
    
    bloodChargeEndTime = bloodChargeEndTime - GetTime()
    end
    
    if bloodCharge == nil then
    if bloodChargeCount >= 5 then
    return true
    end
    end
    I'll do some more research into what the error could be.

  12. #1302
    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 imdasandman View Post
    Hey I am lurking kinda still... does the player base here in pqr still use my dk profiles? What improvements/tweaks do you think need to be done? Let me know via pm and I will try to address them Thanks.
    P.S. I only worked on frost/unholy dks for pve
    I still only use your masterfrost/hastefrost profile for my DK, and it does awesome I cant really come up with any improvements, maybe someone else can.

  13. #1303
    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 Decaed View Post
    So I have been testing the code that Averykey gave me, but for some reason it doesn't want to work.

    Code:
    local bloodCharge,_,_,bloodChargeCount = UnitAura("player","Blood Charge")
    local bloodChargeTime, _, _, _, _, _, bloodChargeEndTime = UnitBuffID("player", 114851)
     
    bloodChargeCount == 5 or bloodChargeEndTime <= 2
    
    if bloodChargeTime == nil then
    
    bloodChargeEndTime = bloodChargeEndTime - GetTime()
    end
    
    if bloodCharge == nil then
    if bloodChargeCount >= 5 then
    return true
    end
    end
    I'll do some more research into what the error could be.

    local bloodCharge,_,_,bloodChargeCount = UnitAura("player","Blood Charge")
    --local bloodChargeTime, _, _, _, _, _, bloodChargeEndTime = UnitBuffID("player", 114851)

    --example if it does fall off, I don't think it does though
    --the ~= means if its up, the way you had it would always check while its off, no reason to.
    --if bloodCharge ~= nil then
    --if bloodChargeCount >= 5 or bloodChargeEndTime <= 2 then
    --return true
    --end
    --end


    --get current time of blood charge, only applies for the above ^
    --if bloodChargeTime == nil then
    --bloodChargeEndTime = bloodChargeEndTime - GetTime()
    --end

    --should work find with just the below, I don't know though; the _, _ stuff is a mystery to me still
    if bloodCharge == nil then
    if bloodChargeCount >= 5 then
    return true
    end
    end[/code]
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

  14. #1304
    Decaed's Avatar Master Sergeant
    Reputation
    22
    Join Date
    Jun 2012
    Posts
    134
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ah, I get what you mean now. Thanks again, Averykey. I appreciate your help!

  15. #1305
    imdasandman's Avatar Contributor
    Reputation
    206
    Join Date
    Feb 2011
    Posts
    965
    Thanks G/R
    9/4
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by FrostDKsFTW View Post
    @OnionsTich
    Please stop spamming the forum asking about dispels on spine, sheuron already answered your question and told you exactly what to do. You have to be prepared to edit the code yourself.

    @imdasandman
    I havn't been playing my DK much recently but the last time I used your frost profile it was working fine The one thing I would ask for and this goes for other class profiles as well from other profile creators, please put in a button toggle for cooldowns. For frost I changed mine so I could toggle on and off Raise Dead. I prefer to only use it on boss fights really.
    Other than that all perfect. Can't remember if I rep+ you before so here's more!
    Yea i will try to come up with a trash profile or somethibg that only blows sub 1 min cd's and gloves. Maybe you can point me to a profile that has this in rotation toggle( call to a sub routine) i can even add chat window notification

    Sent from my SAMSUNG-SGH-I717 using Tapatalk 2
    Last edited by imdasandman; 07-04-2012 at 05:15 AM.
    My Frost/Unholy DK WoL ranking edits(4.3) and crystals Hunter Beta profiles-
    https://imdasandmandeathknight.googl...com/svn/trunk/
    Originally Posted by Valma View Post
    Oh sure. (: Plz,lord,rewrite my profile without "re-inventing a wheel".I'm really interested how would you do so.I even ready to eat my pants if yours will perform better in raids than mine

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