PQR - Rotation Bot menu

User Tag List

Page 188 of 779 FirstFirst ... 88138184185186187188189190191192238288688 ... LastLast
Results 2,806 to 2,820 of 11681
  1. #2806
    travis2861's Avatar Contributor
    Reputation
    99
    Join Date
    Aug 2007
    Posts
    227
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by firepong View Post
    Set Skip Unknown to False, SpellID to 0 and change return true to CastSpellByName(tostring(GetSpellInfo(spellID))) where spellID is the spellID of either Dispatch or Backstab. Try Backstab first, then switch it to Dispatch if it doesn't work.

    Also, is it just me or does Enahnce DPS flat ass suck right now? I cant get over 20k DPS no matter how I change the rotation around.

    EDIT* Looks like I can top out at around 27k burst and level out around 25k. Know I won't be playing Enhance when mists comes out >.> lol
    I'm able to get the logic to work but neither putting the ID's straight into PQR or doing the workaround for Dispatch or Backstab work other then that it should be the optimal rotation right now.

    PQR - Rotation Bot
  2. #2807
    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 kickmydog View Post
    Are any other developers encountering some really funky problems when coding stuff?

    I've doing some really simple code and the stuff just flat out won't work. Simple stuff like
    Code:
     if IsLeftShiftKeyDown then return true end
    from my Rapid Fire pushdown ability won't work. Another one that just does my head in. Cobra Shot, a simple return true, the damn ability will not fire, even if it is the only ability in the rotation. I notice that on sheuron's profile he uses
    Code:
    CastSpellByName(GetSpellInfo(77767),nil)
    return true
    instead. Is there any particular reason why Cobra Shot (ID 77767) would not work with a simple return true?

    I've re-written my BM profile three times now and shit just messes up that shouldn't. I've had ppl look at the code and they say it looks fine. At this point the only thing I can get to work is Sheuron's profile and my modified version of it.

    When I debugg it says that ID 77767 is unknown, but casting by spell name 77767 works.
    Code:
    IsLeftShiftKeyDown
    Code:
    CastSpellByName(GetSpellInfo(77767),nil)
    to:

    Code:
    IsLeftShiftKeyDown()
    Code:
    CastSpellByName(tostring(GetSpellInfo(77767)))


    Originally Posted by travis2861 View Post
    I'm able to get the logic to work but neither putting the ID's straight into PQR or doing the workaround for Dispatch or Backstab work other then that it should be the optimal rotation right now.
    I would try and see what happens, but I have no Rogue at 85, so that's not happening lol
    Last edited by firepong; 08-29-2012 at 08:08 PM.

  3. #2808
    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)
    @ bu_ba got your latest holy pala profile from your SVN , updated data files and profiles , when i activate it it spams the chat with endless lines of

    " Nova Data File v2.0 - Aug 28, 2012
    Loading Paladin Tables ... "


    the profile seems to work even if that spam occurs ... any ideeas ? ( profile doesnt spam any LUA errors , just that )


    LE : removed from the lua file the part on top where it sayed nova data file etc , and not just spams lines of " Loading Paladin Tables ..." dunno where the problem is , the rotation works , it heals , but spams endless lines of that
    Last edited by ace99ro; 08-29-2012 at 08:17 PM.

  4. #2809
    travis2861's Avatar Contributor
    Reputation
    99
    Join Date
    Aug 2007
    Posts
    227
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Almost working Assassination rogue profile.
    Most credit goes to sheuron.
    Plugged together by me.
    Dispatch is broken so this is just me putting this out there so hopefully someone can fix it.
    Other then that optimal rotation for the time being, hold left shift to AoE.

    If you want to get this work remove dispatch from the rotation.

    Assassination.zip
    Last edited by travis2861; 08-29-2012 at 08:16 PM.

  5. #2810
    sheuron's Avatar Knight-Champion
    Reputation
    319
    Join Date
    Aug 2011
    Posts
    504
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    tecnicly CastSpellByName(GetSpellInfo(77767),nil) is faster than CastSpellByName(tostring(GetSpellInfo(77767)))
    [ Sheuron PQR Profiles Pack ] https://goo.gl/lfAMC
    If you like this piece of code feel free to invite me a beer making a donation.
    My paypal account: [email protected]

  6. #2811
    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 travis2861 View Post
    Almost working Assassination rogue profile.
    Most credit goes to sheuron.
    Plugged together by me.
    Dispatch is broken so this is just me putting this out there so hopefully someone can fix it.
    Other then that optimal rotation for the time being, hold left shift to AoE.

    If you want to get this work remove dispatch from the rotation.

    Assassination.zip
    Screw that, forgot to start PQR xD I feel like an Idiot. I'll look around it some more and see what I can come up with.

    Could swore that rogue combo points were on the player though, not the target.

    Originally Posted by sheuron View Post
    tecnicly CastSpellByName(GetSpellInfo(77767),nil) is faster than CastSpellByName(tostring(GetSpellInfo(77767)))
    Who is going to have a computer that's slow enough to notice the difference though. It's all done in a matter of milliseconds xD lol
    Last edited by firepong; 08-29-2012 at 08:27 PM.

  7. #2812
    dotfry's Avatar Corporal
    Reputation
    21
    Join Date
    Mar 2012
    Posts
    29
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by abndrew82 View Post
    Some reason I cant get this to download. I click download from URL, paste in the address to that text file, the bar fills green but then stops. Doesnt seem to actually download the files.

    Thanks
    http://wow.6dreams.net/pqr/warrior.zip

    Added Fury features, and Dragon Roar removed. Manual use only. Tomorrow add shift for pause rotation

  8. #2813
    Solevan's Avatar Private
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Someone here has to Download Link Profiles Enhance Shaman or Fire Mage PvE? please

  9. #2814
    SHJordan's Avatar Member
    Reputation
    1
    Join Date
    Aug 2011
    Posts
    61
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by travis2861 View Post
    Almost working Assassination rogue profile.
    Most credit goes to sheuron.
    Plugged together by me.
    Dispatch is broken so this is just me putting this out there so hopefully someone can fix it.
    Other then that optimal rotation for the time being, hold left shift to AoE.

    If you want to get this work remove dispatch from the rotation.

    Assassination.zip
    Any chance to make a working pvp sub rogue? pls pls pls

  10. #2815
    Vogel81's Avatar Master Sergeant
    Reputation
    22
    Join Date
    Feb 2012
    Posts
    105
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by travis2861 View Post
    Almost working Assassination rogue profile.
    Most credit goes to sheuron.
    Plugged together by me.
    Dispatch is broken so this is just me putting this out there so hopefully someone can fix it.
    Other then that optimal rotation for the time being, hold left shift to AoE.

    If you want to get this work remove dispatch from the rotation.

    Assassination.zip
    Awesome Travis2861! Thanks for at least getting a start

  11. #2816
    kickmydog's Avatar Contributor
    Reputation
    257
    Join Date
    Jul 2011
    Posts
    635
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by firepong View Post
    Code:
    IsLeftShiftKeyDown
    Code:
    CastSpellByName(GetSpellInfo(77767),nil)
    to:

    Code:
    IsLeftShiftKeyDown()
    Code:
    CastSpellByName(tostring(GetSpellInfo(77767)))




    I would try and see what happens, but I have no Rogue at 85, so that's not happening lol
    I see your correction, I had it the correct way for my ability I was just writing off the top of my head. The cobra shot ability works, I cut and paste Shueron's code there, what I do not understand is why the ID doesn't work with a simple return true when casting by the spell id works. What is going on?
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/422388-kickmydog-bm-mm-sv-hunter-profiles.html#post2793017

  12. #2817
    travis2861's Avatar Contributor
    Reputation
    99
    Join Date
    Aug 2007
    Posts
    227
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by SHJordan View Post
    Any chance to make a working pvp sub rogue? pls pls pls
    I'm hardly the person to ask to do that, Blinded made the last one that i can remember, set a few fight records on WoL with it.

  13. #2818
    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 kickmydog View Post
    I see your correction, I had it the correct way for my ability I was just writing off the top of my head. The cobra shot ability works, I cut and paste Shueron's code there, what I do not understand is why the ID doesn't work with a simple return true when casting by the spell id works. What is going on?
    IsSpellKnown() is a little wonky. Like I can do it with a couple druid spells and it will return false, even if it is the correct and only spellID.
    Last edited by firepong; 08-29-2012 at 08:39 PM.

  14. #2819
    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)
    So why doesn't this work?

    Did something change?
    --- [ExtraActionButton1] ---
    local DivineShield = UnitBuffID("player", 642)
    local LeftAlt = IsLeftAltKeyDown()

    --- [Fading Light] ---
    local fadingtime = select(7,UnitDebuffID("player",110070))

    if fadingtime ~= nil and fadingtime - GetTime() < 1.3 and DivineShield == nil then
    RunMacroText("/click ExtraActionButton1")
    end

    --- [Hour of Twilight, Left Alt to skip] ---
    if LeftAlt == nil then
    local channelSpell, _, _, _, _, endTime = UnitCastingInfo("boss1")

    if channelSpell == GetSpellInfo(109417) and endTime/1000 - GetTime() < 1 and DivineShield == nil then
    RunMacroText("/click ExtraActionButton1")
    end
    end

    --- [Madness of Deathwing] ---
    local tentacledeath = select(7,UnitDebuffID("player",109597))

    if tentacledeath ~= nil and tentacledeath - GetTime() < 0.7 then
    RunMacroText("/click ExtraActionButton1")
    end

    --- [Spine of Deathwing] ---
    local inCombat = UnitAffectingCombat("player")
    local Parachute = UnitAura("player", "Parachute")

    if inCombat then
    if Parachute ~= nil then
    RunMacroText("/cancelaura Parachute")
    end
    end

    --- [Lightwell] ---
    local LightwellName = "Lightwell"
    local hp = UnitHealth("player") / UnitHealthMax("player") * 100
    local sLightwell = UnitBuffID("player", 7001)
    local sDeepCorruption = UnitDebuffID("player", 108220)

    if PQR_LightwellTimeout == nil then
    PQR_LightwellTimeout = 0
    end

    if hp < 70 and sLightwell == nil then
    if PQR_LightwellTimeout < GetTime() then
    if sDeepCorruption == nil then
    PQR_LightwellTimeout = GetTime() + 1
    InteractUnit(LightwellName)
    end
    end
    end

    --- [Darkmoon] ---
    local cannontime = select(7,UnitBuffID("player",102116))

    if cannontime ~= nil and cannontime - GetTime() < 1.15 then
    CancelUnitBuff("player","Magic Wings")
    end


    edit: for anyone wondering what stat weights to use for ret.

    Reforge with these on askmrrobot


    MH Speed 18.85
    MH DPS 9.00
    Strength 2.33
    Hit 1.30
    Expertise 1.30
    Mastery 0.98
    Attack Power 1.00
    Crit 0.79
    Haste 1.13
    Agility 0.00
    Last edited by averykey; 08-29-2012 at 09:16 PM.
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

  15. #2820
    triggersad's Avatar Member
    Reputation
    8
    Join Date
    Apr 2012
    Posts
    68
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by vorn10 View Post
    Ok so checked old Onya resto shaman. Changed few things, added Sheuron's HST and it working fine.
    SHAMAN.rar - Speedy Share - upload your files here
    https://www.virustotal.com/url/bfee5...is/1346287520/

    :S not healing myself, no idea why if someone can look into it.
    could you do the same thing with onya's ele rotation
    Last edited by triggersad; 08-29-2012 at 09:22 PM.

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