PQR - Rotation Bot menu

User Tag List

Page 520 of 779 FirstFirst ... 20420470516517518519520521522523524570620 ... LastLast
Results 7,786 to 7,800 of 11681
  1. #7786
    derpin8's Avatar Corporal
    Reputation
    1
    Join Date
    Nov 2012
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by evlow View Post
    @derpin8

    I haven't tested it as i'm at work, but I believe it would be something like this

    PHP Code:
    local STFevents CreateFrame("Frame"), {}
    STF:RegisterEvent("CHAT_MSG_WHISPER")
    STF:SetScript("OnEvent"onEvent)
    STF:Show()
    function 
    onEvent(selfeventmsgsender

    if 
    event == "CHAT_MSG_WHISPER" and msg:find("shattering throw"then    
         CastSpellByName
    (GetSpellInfo(64382),"target")  
         return 
    true 
         end
    end 
    @5:27pm - tested and it should work like this
    Thank you so much for this!
    Now I am trying to make it wait 3 seconds after the whisper to cast shattering throw but I can't get it to work.

    PHP Code:
    local STFevents CreateFrame("Frame"), {}
    STF:RegisterEvent("CHAT_MSG_WHISPER")
    STF:SetScript("OnEvent"onEvent)
    STF:Show()
    function 
    onEvent(selfeventmsgsender

    if 
    event == "CHAT_MSG_WHISPER" and msg:lower():match("shattering throw"then
        local WhisperTime 
    GetTime()
        
    end
    end

    if WhisperTime ~= nil then
        
    if GetTime() >= WhisperTime 3 then
    CastSpellByName
    (GetSpellInfo(64382),"target")     
        return 
    true
        end
    end 
    What am I doing wrong? Sorry I am really bad at Lua.

    Ahh n/m. My mistake was the local before WhisperTime.
    Last edited by derpin8; 01-29-2013 at 01:27 AM.

    PQR - Rotation Bot
  2. #7787
    Rubim's Avatar Contributor
    Reputation
    247
    Join Date
    Mar 2010
    Posts
    267
    Thanks G/R
    4/7
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by js1974 View Post
    Looking for some help to combine these two sets of code into one check. The basic idea is I want the ability to activate as long as the buff is active unless it's toggled off I'm using Rubims code for Invoke Xuen and making changes for how I want to interact.

    PHP Code:
    local SPELL 123904
    local TargetValidationRub 
    TargetValidationRub
    local SpecialUnit 
    SpecialUnit
    local RSK
    ,_,_,_,_,_,RSKtimer UnitDebuffID("target",130320,"player")

    if 
    PlayerCombat
        
    and IsSpellKnown(SPELL)
        and 
    PQR_SpellAvailable(SPELL)
        and 
    IsSpellInRange(GetSpellInfo(100780), "target") == 1
        then

            
    if vcd == "boss"
         
    and SpecialUnit()
         
    then
            CastSpellByName
    (GetSpellInfo(SPELL),nil)
            return 
    true
        
    elseif vcd == "on"
        
    then
            CastSpellByName
    (GetSpellInfo(SPELL),nil)
            return 
    true
        end
    end 
    So that is his code which works fine but I want to take it a step further and have it only activate if Tigereye Brew is active. What i'm currently using for Invoke Xuen is

    PHP Code:
    for i=1,40 do local b={UnitBuff("player",i)}if b[11]==116740
     then 
    return true
     end
     end 
    The goal is being able to toggle it on, off or boss like Rubim intended but also have it only go off if Tigereye Brew the buff is active. If anyone wants to take a stab at it I'd love to hear how to fix it.
    Why would you want that? If you hold Xuen like that you will lose DPS, you can do a simply test on simulationcraft - World of Warcraft DPS Simulator - Google Project Hosting.

    Anyway, if you wnt to check for TigerEye you could, use the:
    Code:
    local Tigereye,_,_,TigereyeBrewCount = UnitBuffID("player",125195)
    .

    For changing Simcraft, check the rotation priority and put a:
    Code:
    buff.tigereye_brew.react=10
    on the Invoke Xuen.
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/385569-pqr-death-knight-monk-tank-dps-profiles.html#post2582063

  3. #7788
    js1974's Avatar Member
    Reputation
    27
    Join Date
    Jan 2008
    Posts
    199
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Rubim View Post
    Why would you want that? If you hold Xuen like that you will lose DPS, you can do a simply test on simulationcraft - World of Warcraft DPS Simulator - Google Project Hosting.

    Anyway, if you wnt to check for TigerEye you could, use the:
    Code:
    local Tigereye,_,_,TigereyeBrewCount = UnitBuffID("player",125195)
    .

    For changing Simcraft, check the rotation priority and put a:
    Code:
    buff.tigereye_brew.react=10
    on the Invoke Xuen.
    Thanks much appreciated, the reason I have been testing it is because after a full day of testing DPS i'm seeing an increase from holding it for the 10 stack and executing it at the same time as with my trinkets most of the time 2 trinkets are active during the Brew. Now if I was using a trinket like Terror in the Mists with a longer ICD I would definitely agree but for my current gear ICD on 2 trinkets being 45/55 seconds.

    As usual thanks for your assistance much appreciated!

  4. #7789
    vorn10's Avatar Active Member
    Reputation
    75
    Join Date
    Nov 2010
    Posts
    303
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is it possible to check if boss used instant cast? Like Wind Step from Wind Lord?

  5. #7790
    bu_ba_911's Avatar Elite User
    Reputation
    552
    Join Date
    May 2006
    Posts
    1,638
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by vorn10 View Post
    Is it possible to check if boss used instant cast? Like Wind Step from Wind Lord?
    Combat log reader would have it

    Sent from my ADR6400L using Tapatalk 2
    ^0^Team Nova's PQR NCC ^0^

    If you think someone did something good, take the time to show your appreciation!

  6. #7791
    Debordes's Avatar Member
    Reputation
    14
    Join Date
    Oct 2007
    Posts
    128
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Still looking for a good Resto Shaman PvP profile.

  7. #7792
    jacobmohan's Avatar Member
    Reputation
    1
    Join Date
    Jun 2011
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I am using Xelpers Ret Paladin Profile And it has been working but now it Just stands there and only casts half of his spells. :\ Can anyone help ?

    Edit: Tested on a Different Computer With a brand new Installation of PQR/Xelper Didn't work either.
    Specifically Judgment/Crusader Strike :\\\\ Also those 2 spells don't work with Nudex either
    Last edited by jacobmohan; 01-29-2013 at 07:41 PM.

  8. #7793
    Apocalypse59's Avatar Knight
    Reputation
    17
    Join Date
    Apr 2012
    Posts
    221
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Edit - Problem Solved.
    Last edited by Apocalypse59; 01-29-2013 at 11:56 PM.

  9. #7794
    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)
    @Nerder

    Found a problemo with your Sub rotation.

    For Backstab instead of

    -- Backstab if behind Target
    if not PQR_UnitFacing("target", "player") and not IsStealthed() then
    if not UnitBuffID("player", 51713) or not UnitBuffID("player", 1856) then
    CastSpellByName(GetSpellInfo(53), "target")
    end
    -- Hemorrhage if in front of Target
    elseif PQR_UnitFacing("target", "player") and not IsStealthed() then
    CastSpellByName(GetSpellInfo(16511), "target")
    end
    it needs to be

    -- Backstab if behind Target
    if not PQR_UnitFacing("target", "player") and not IsStealthed() then
    if not UnitBuffID("player", 51713) and not UnitBuffID("player", 1856) then
    CastSpellByName(GetSpellInfo(53), "target")
    end
    -- Hemorrhage if in front of Target
    elseif PQR_UnitFacing("target", "player") and not IsStealthed() then
    CastSpellByName(GetSpellInfo(16511), "target")
    end
    I also notice that it will still do finishers during shadowdance. With anticipation it seems like you would just skip any finishers until shadow dance ends. Although maybe with HOT you could actually exceed the 10 CPs.

  10. #7795
    momo1029's Avatar Sergeant
    Reputation
    2
    Join Date
    Feb 2009
    Posts
    69
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    anyone have a better code for fire and brimstone + incinerate?
    or havoc + chaos bolt ?


    Code:
    local Backlash = UnitBuffID("player",108563)
    
    if select(5, NUI("player")) >= 1 or Backlash then
       RunMacro("incinerate")
    end
    Last edited by momo1029; 01-30-2013 at 05:22 AM.

  11. #7796
    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)
    Using the built in interrupt thing with PQR can I some how set it up to make my Windwalker Monk interrupt a spell on a Boss fight?

  12. #7797
    Jaylock's Avatar Member
    Reputation
    13
    Join Date
    Apr 2009
    Posts
    29
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Has anyone encountered problems when the rotation editor encounters a boss, it shuts off, but for trash its fine? I had an infinite stream of lua errors pop up on my screen just as i began a boss and my rotation editor stopped working.

    Was using mentaly's shadow priest profile. Any help with this? Is it just because some of my addons are out of date? Thanks for any help!

  13. #7798
    Vachiusa's Avatar Contributor
    Reputation
    256
    Join Date
    Jan 2013
    Posts
    227
    Thanks G/R
    22/4
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Vachiusa Mistweaver Monk 1.0 - 31/01/2013

    This profile based on 465 ilvl (with 10400 combat regen), heroic dungeon, MSV LFR.
    Talent and glyph: Mists of Pandaria - Talent Calculator - World of Warcraft
    Reforge: Spirit > Haste (16.65%) > Crit = Mastery > Haste

    Main information:

    -Set your focus target to the main tank. (optional)
    -Auto assist focus target (tank). (optional)
    -Resuscitate death player or dispel when mouse-over target.
    -Tsulong boss fight support (heal and dispel boss). (not yet test because my low gear)
    -Heart of Fear raid fight support (coded by Nova team).
    -Support Chi Burst, Uplift for AOE healing.
    -Support Melee heal or Range heal, also DPS.
    -And many other spells/features.

    Code:
    Left Shift: Pause
    Left Control: Jade Serpent Statue at Mouseover
    Left Alt: Auto dispel raid 
    Right Alt: Healing Sphere at Mouseover
    Right Shift: Hold for Crackling Jade Lightning
    Right Control: Hold for Spinning Crane Kick
    Download: Vachiusa Mist Monk

    If you have any issues with mana management just edit var party/raid setting with higher/smaller values or try ALTERNATE awesome profiles from deadpanstiffy or Bubba.
    Status: Inactive. Don't PM me, pls drop a msg to vachiusa (at) mientrung <dot> com

  14. #7799
    Bendecks's Avatar Sergeant CoreCoins Purchaser
    Reputation
    5
    Join Date
    Aug 2011
    Posts
    66
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Could anyone conjure a piece of code that allows me to disenchant all items in my bag that can be disenchanted?

    I take full responsibility for any blues/epics I may disenchant by mistake, it's just that I have a full bank of various greens do be de'ed...

  15. #7800
    zambeaux's Avatar Corporal
    Reputation
    2
    Join Date
    Nov 2009
    Posts
    33
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is anyone having the issue of your computer fan going crazy when PQR runs ?

    what could be causing this ?

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 12:37 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