PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 307 of 779 FirstFirst ... 207257303304305306307308309310311357407 ... LastLast
Results 4,591 to 4,605 of 11681
  1. #4591
    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)
    Help! I was currently trying to work on a Brewmaster profile, I used the Nova Windwalker one as reference due to them having almost all the same spells. I was able to get the regular rotation, Single and AoE working then I tried adding all of the special damage mitigation spells, which from there messed me up. I'm not the best at writing the scripts for this but have been studying as much as I can and trying to learn more! So if anyone can help then please see whats wrong with this and respond back!

    Brewandwind.rar

    PQR - Rotation Bot
  2. #4592
    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 Bekimo View Post
    We need good warrior profile?! Anyone? ;>
    Yes - Use the search-button! There are profiles out there if you look around.

  3. #4593
    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 FrostDKsFTW View Post
    @Kinkeh

    I've been trying your pvp profile out in battlegrounds, works well but after a few mins it stops working, no errors just stops attacking. I'll let you know if I find what it is.
    Hmm maybe it's the pause, try removing that out of the rotation and see what happens :3

  4. #4594
    Jvidiashow's Avatar Member
    Reputation
    2
    Join Date
    Feb 2011
    Posts
    54
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can someone help me with what this means?

    Message: [string "if PQR_Addon_Loaded == nil then..."]:1451: GetSpellBookItemName(): Invalid spell slot
    Time: 10/03/12 22:19:15
    Count: 345
    Stack: [C]: in function `GetSpellBookItemName'
    [string "if PQR_Addon_Loaded == nil then..."]:1451: in function `PQR_GetSpellID'
    [string "if PQR_Addon_Loaded == nil then..."]:1437: in function <[string "if PQR_Addon_Loaded == nil then..."]:1435>
    [C]: in function `CastSpellByName'
    [string "if UnitMana("player") < 75 and nv_CDs and P..."]:5: 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: (*temporary) = 228
    (*temporary) = "spell"

  5. #4595
    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)
    Can't test this right now, can someone test it for me or point out any obvious errors.


    PHP Code:
    -- Holy Avenger Check
    if UnitBuffID("player"105809) and UnitPower("player"9) >= 3 then
        
    return false
    end

    -- Prevents Wrong Spell Cast Ret
    if (select(2GetSpecializationInfo(GetSpecialization()))) == "Retribution" then
        
    if PQR_SpellAvailable(879) or PQR_SpellAvailable(24275) or PQR_SpellAvailable(35395) or UnitBuffID("player"87138then
            
    return false
        end
    end

    -- Prevents Wrong Spell Cast Prot
    if (select(2GetSpecializationInfo(GetSpecialization()))) == "Protection" then
        
    if PQR_SpellAvailable(35395then
            
    return false
        end
    end

    -- Seal Check
    local hasSeal 
    false
    if GetShapeshiftForm() ~= 0 then hasSeal true else hasSeal false end

    --Censure time/stack check for double jeoparady
    local tCensure 
    select(7UnitDebuffID("target"31803))
    local fCensure select(7UnitDebuffID("focus"31803))

    if 
    hasSeal and UnitPower("player"9) < 5 then
        
    if UnitExists("focus") and RangeCheck(20271"focus"then
            
    if not fCensure or (tCensure GetTime()) > (fCensure GetTime()) then
                CastSpellByName
    (GetSpellInfo(20271), "focus")
            
    end
        end
    else
        if 
    UnitExists("target") and RangeCheck(20271"target"then
            
    if not tCensure or (tCensure GetTime()) < (fCensure GetTime()) then
                CastSpellByName
    (GetSpellInfo(20271), "target")
            
    end
        end            
    end 
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

  6. #4596
    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 Jvidiashow View Post
    Can someone help me with what this means?

    Message: [string "if PQR_Addon_Loaded == nil then..."]:1451: GetSpellBookItemName(): Invalid spell slot
    Time: 10/03/12 22:19:15
    Count: 345
    Stack: [C]: in function `GetSpellBookItemName'
    [string "if PQR_Addon_Loaded == nil then..."]:1451: in function `PQR_GetSpellID'
    [string "if PQR_Addon_Loaded == nil then..."]:1437: in function <[string "if PQR_Addon_Loaded == nil then..."]:1435>
    [C]: in function `CastSpellByName'
    [string "if UnitMana("player") < 75 and nv_CDs and P..."]:5: 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: (*temporary) = 228
    (*temporary) = "spell"
    you don't know the spell or have the talent by the looks of it.

    Please if someone helped you donate rep to them.

  7. #4597
    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)
    Need some help with some code, pretty please

    I'm having problems with Soul Fire hard casting another cast after Molten Core has dropped off. Is there anything I'm missing or something I can tweak to fix this issue?

    PHP Code:
    if UnitBuffID("player",122355)
    --and 
    select(2,GetSpellCooldown(6353)) < 1
    --and GetShapeshiftForm("player") ~= 1
    then
    return true
    end 

  8. #4598
    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 Decaed View Post
    Need some help with some code, pretty please

    I'm having problems with Soul Fire hard casting another cast after Molten Core has dropped off. Is there anything I'm missing or something I can tweak to fix this issue?

    PHP Code:
    if UnitBuffID("player",122355)
    --and 
    select(2,GetSpellCooldown(6353)) < 1
    --and GetShapeshiftForm("player") ~= 1
    then
    return true
    end 
    set the delay higher say 500 in the recast delay

    Please if someone helped you donate rep to them.

  9. #4599
    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 crystal_tech View Post
    set the delay higher say 500 in the recast delay
    Yeah I did try that. But then it weaves in between Shadow bolt and Soul Fire. Like say I have a 5 stack of Molten Core it will cast a SF then a SB then a SF.

    Not sure how to fix it

    I could add "and select(4, UnitBuffID("player", 122355)) >= 1" but then it will wait until there's two stacks before casting. Which is a DPS loss.
    Last edited by Decaed; 10-03-2012 at 07:07 PM.

  10. #4600
    gimerak's Avatar Member
    Reputation
    1
    Join Date
    Dec 2011
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey Kinkeh, Thanks for the Frost DK profiles it's really appreciated, one problem Im having is its not casting Soul Reaping! anyone else having that issue?

  11. #4601
    Xelper's Avatar ★ Elder ★
    Reputation
    1024
    Join Date
    Mar 2007
    Posts
    860
    Thanks G/R
    0/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I've uploaded my latest ret rotation. It can be downloaded here:

    http://dl.dropbox.com/u/39925787/PQR_Profiles/xelper_profiles.txt

    (Copy and Paste into the "Download from URL" option in the Rotation Editor.)

  12. #4602
    AtomX's Avatar Active Member
    Reputation
    19
    Join Date
    Nov 2007
    Posts
    196
    Thanks G/R
    2/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm trying to do a Mistweaver rotation, and can't figure out how to get him to see how many stacks of Mana Tea buff I have (115867) I want it to use mana tea for when I have 2 or more stacks, because I have the glyph for it and in 10 seconds it's hard to build up more than 2 stacks of the stuff, so might as well use it, I have found this keeps my mana up for a LONG time. If anyone could help me on this front I think I could have a good mistweaver profile up and going by the end of the week at the latest!

  13. #4603
    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)
    Update 1.6.0 pushed for my Feral Druid Profile. Support added for Dream of Cenarius. It should be decent enough to woo people over. It is a noticeable DPS increase, so if your level 90, please download.

    Make sure to update both the Rotation and the DATA file when it pops up or your going to have a lot of problem's with the rotation lol

  14. #4604
    lostwalker's Avatar Member
    Reputation
    2
    Join Date
    Sep 2008
    Posts
    103
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I understand that we have about 4-5 people making BM profiles, but is Kick's the only one that has the Lvl 90 Glaive Toss added?

    It works really well, but I always like to test all of them. =)

    Thanks

  15. #4605
    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 Decaed View Post
    Yeah I did try that. But then it weaves in between Shadow bolt and Soul Fire. Like say I have a 5 stack of Molten Core it will cast a SF then a SB then a SF.

    Not sure how to fix it

    I could add "and select(4, UnitBuffID("player", 122355)) >= 1" but then it will wait until there's two stacks before casting. Which is a DPS loss.
    in shadowbolt just add if you have the mc buff then return false

    Please if someone helped you donate rep to them.

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