PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 545 of 779 FirstFirst ... 45445495541542543544545546547548549595645 ... LastLast
Results 8,161 to 8,175 of 11681
  1. #8161
    Guinness's Avatar Member
    Reputation
    5
    Join Date
    Apr 2012
    Posts
    75
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by billybuffalo View Post
    "Perhaps this has been asked and answered before, so I apologize for asking it again if it has. Is it possible for me to change the "activation" keys for spells? Example being; I use Vachiusa disc priest profile. It works great but I have to use the Right shift to cast the SS/POH combo. Is it possible for me to change this to the left shift button instead?"
    Billy, type /nova or /novaframe and change them there. Otherwise it's a complicated process to change the defaults if you aren't comfortable with LUA. In Vachiusa's Shaman profile the keys are located in the "-- Init --" section under "Nova_CooldownCheck".

    Code:
    Nova_CooldownCheck = {
    	{ Mod = 8,	Text = "HealingTideTotem",			Var1 = 1		}, --IsRightShiftKeyDown
    	{ Mod = 1,	Text = "PauseRotation",				Var1 = 1		}, --IsLeftShiftKeyDown
    	{ Mod = 2,	Text = "Chain_Heal",				Var1 = 1		}, --IsLeftControlKeyDown
    	{ Mod = 4,	Text = "DispelRaid",				Var1 = 1		}, --IsLeftAltKeyDown		
    	{ Mod = 32, Text = "HealingRain",				Var1 = 1		}, --IsRightAltKeyDown
    	{ Mod = 16, Text = "Ascendance",				Var1 = 1		}  --IsRightControlKeyDown
    	--{ Mod = 2, Text = "RemoveFromCustomTable",		Var1 = 1		}, --IsLeftControlKeyDown
    	--{ Mod = 4, Text = "AddToCustomTable",			Var1 = 1		}  --IsLeftAltKeyDown			
    }
    The values are:
    • Left Shift = 1
    • Left Ctrl = 2
    • Left Alt = 4
    • Right Shift = 8
    • Right Ctrl = 16
    • Right Alt = 32


    Combos end up being what ever the key values add up to. So Left Ctrl + Left Alt would be 6. Hope this helps.
    Last edited by Guinness; 03-02-2013 at 01:54 PM. Reason: Typo "their" should be "there"

    PQR - Rotation Bot
  2. #8162
    Guinness's Avatar Member
    Reputation
    5
    Join Date
    Apr 2012
    Posts
    75
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by reapagedk View Post
    is there a forum section about writing pqr profiles so I can learn to start making some?
    Reap basically how almost everyone here started was by looking at other people profiles, asking questions in the MAIN PQR thread or PM's. Also This 500+ page thread has a lot of great questions and answers. Take your time by going over the thread. The old thread also has a ton of Gold in it. But no there is no dedicated thread. Additionally it might be frowned upon to ask questions in the PQR thread. If you feel more comfortable use the subforum "WoW Bots Questions & Requests". Hope that helped.

  3. #8163
    billybuffalo's Avatar Knight-Lieutenant
    Reputation
    4
    Join Date
    Jan 2013
    Posts
    360
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you so much!

  4. #8164
    iceymot's Avatar Member
    Reputation
    1
    Join Date
    Mar 2012
    Posts
    32
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mrbob View Post
    Ahh so simple now it is explained, appreciate your taking time to help, I still got LUA errors with that code though.

    Also thanks to Nerder, that code worked, I am unsure as to the reason, calling the buff as nil places it as a number to call the arithmetic?
    At least as I learn I now understand the select(7, and the uses of these functions now, thanks.

    try
    if UnitBuffID("player", 102560) and select(7, UnitBuffID("player", 102560)) - GetTime() <= 15 then
    CastSpellByName(tostring(GetSpellInfo(48505)))
    end

  5. #8165
    paintpauller's Avatar Contributor
    Reputation
    128
    Join Date
    Jan 2012
    Posts
    265
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is there a alternative to:

    PHP Code:
    --Firepongs PQR_UnitDistance
    --Var1 Target
    --Var2 Player
    function PQR_UnitDistance(var1var2)
        if 
    UnitExists(var1) and not UnitIsDead(var1then
            local x1 
    y1 select(1,PQR_UnitInfo(var1)), select(2,PQR_UnitInfo(var1))
            
    local x2 y2 select(1,PQR_UnitInfo(var2)), select(2,PQR_UnitInfo(var2))
            
    local w 100000
            local h 
    100000
            local distance 
    sqrt(min(x1 x2- (x1 x2))^min(y1 y2- (y1-y2))^2)
            return 
    distance
        end
    end 
    to check distance of your target? im working on something that will auto interact with my target but i dont want it spamming "you need to be closer to interact with that target." all the time. I even tried limiting how often it does the distance check but at 1.25 second intervals there is still FPS lag and if i go much higher then it defeats the purpose.

    PHP Code:
    if dontCheck == nil then
        dontCheck 
    0
    end


    if UnitExists("target") and not UnitIsDead("target"then
        
    if dontCheck GetTime() then
            dontCheck 
    0
            targetDistance 
    PQR_UnitDistance("target""player")
            if 
    targetDistance <= 5.5 then
                InteractUnit
    ("target"
                
    dontCheck = (GetTime()) + 1.25
            end
        end
    end 

    Alpha Profiles: - All profiles with PQInterface support!
    Alpha Interrupt: https://goo.gl/OLhGi - Ignore List, Random Percentage, Time Delays, & much More!
    Alpha Utilities: https://goo.gl/rt7WA - Farming, Prospecting, Disenchanting, Milling, & Questing
    Alpha Moonkin: https://goo.gl/gjxw0 - Optimized DPS Rotation for PvE, Mashup of 3 Profiles
    Avery's Ret: https://goo.gl/GhurM - My take on Avery's outstanding Ret profile with PQI

  6. #8166
    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 paintpauller View Post
    is there a alternative to:

    PHP Code:
    --Firepongs PQR_UnitDistance
    --Var1 Target
    --Var2 Player
    function PQR_UnitDistance(var1var2)
        if 
    UnitExists(var1) and not UnitIsDead(var1then
            local x1 
    y1 select(1,PQR_UnitInfo(var1)), select(2,PQR_UnitInfo(var1))
            
    local x2 y2 select(1,PQR_UnitInfo(var2)), select(2,PQR_UnitInfo(var2))
            
    local w 100000
            local h 
    100000
            local distance 
    sqrt(min(x1 x2- (x1 x2))^min(y1 y2- (y1-y2))^2)
            return 
    distance
        end
    end 
    to check distance of your target? im working on something that will auto interact with my target but i dont want it spamming "you need to be closer to interact with that target." all the time. I even tried limiting how often it does the distance check but at 1.25 second intervals there is still FPS lag and if i go much higher then it defeats the purpose.

    PHP Code:
    if dontCheck == nil then
        dontCheck 
    0
    end


    if UnitExists("target") and not UnitIsDead("target"then
        
    if dontCheck GetTime() then
            dontCheck 
    0
            targetDistance 
    PQR_UnitDistance("target""player")
            if 
    targetDistance <= 5.5 then
                InteractUnit
    ("target"
                
    dontCheck = (GetTime()) + 1.25
            end
        end
    end 
    what spell are you trying to cast at that distance?

    Please if someone helped you donate rep to them.

  7. #8167
    paintpauller's Avatar Contributor
    Reputation
    128
    Join Date
    Jan 2012
    Posts
    265
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crystal_tech View Post
    what spell are you trying to cast at that distance?
    Im not trying to cast a spell, but auto interact with my target if im in interacting range eg 5.5.
    but mainly trying to avoid the spam of "you need to be closer to interact with that target." the red blizzard Error Message and in general trying to interact with a unit that Im not in range of

    Alpha Profiles: - All profiles with PQInterface support!
    Alpha Interrupt: https://goo.gl/OLhGi - Ignore List, Random Percentage, Time Delays, & much More!
    Alpha Utilities: https://goo.gl/rt7WA - Farming, Prospecting, Disenchanting, Milling, & Questing
    Alpha Moonkin: https://goo.gl/gjxw0 - Optimized DPS Rotation for PvE, Mashup of 3 Profiles
    Avery's Ret: https://goo.gl/GhurM - My take on Avery's outstanding Ret profile with PQI

  8. #8168
    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 averykey View Post
    Sup, wanted to come back for the new patch. Probably going to roll a new class, but I will still keep up to date on my ret and prot profiles.

    What class should I roll? What is looking good for 5.2?

    edit: Have there been any big/small changes for ret/prot in the last 5 months that require a re-write?
    Some changes to Ret I moved over to WW from Ret was a great move class plays exactly the same but it's actually fun again. Ret got a few changes buff to SoL probably being the biggest.

  9. #8169
    kuukuu's Avatar Contributor
    Reputation
    269
    Join Date
    Jul 2012
    Posts
    619
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by paintpauller View Post
    Im not trying to cast a spell, but auto interact with my target if im in interacting range eg 5.5.
    but mainly trying to avoid the spam of "you need to be closer to interact with that target." the red blizzard Error Message and in general trying to interact with a unit that Im not in range of
    CheckInteractDistance() won't work for that? It has a couple different ranges if one fits what you need and it doesn't cause FPS lag.

    Originally Posted by js1974 View Post
    Some changes to Ret I moved over to WW from Ret was a great move class plays exactly the same but it's actually fun again. Ret got a few changes buff to SoL probably being the biggest.
    Avenging Wrath got dropped down to a 2 min CD too. Soooooo looking forward to more wings!
    Former PQR Developer

  10. #8170
    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)


    Unholy Death Knight Rotation - By: Kink

    Recommended Spec: Talent Calculator - Unholy Death Knight (non-selected talents are up to you)
    Profile currently only supports Unholy Blight and Blood Tap. It was created with general knowledge and guidelines of the current Unholy rotation while taking the changes coming with 5.2 into account, with that being said it will not work with 100% functionality in 5.1 because of those changes (Summon Gargoyle no longer costing runic power and Plague strike now applying Frost Fever).
    PQI 2.0.0 is required for customization!
    Download: Unholy Infusion - SVN Depository
    Skype: iiKink (Feel free to contact me on skype or through a PM about feedback or suggestions, always looking to make changes for the better as the current profile was created on my own knowledge and there may be better ways of doing things)

    Features:
    -- Single Target Rotation
    ---- The main priority of the single target rotation is to get your ghoul into Dark Transformation and maintain it throughout the fight, while it is transformed the profile conserves RP to blow as soon as the buff drops so we can start building SI stacks up again. It also maintains DnD during single target so make sure to have your mouse hovering over the thing you're smacking! (can be disabled, but not optimal to do so)
    -- AoE Rotation
    ---- The AoE rotation prioritizes getting 4 death runes using Festering Strike (if enabled) then maintains Blood Boil and DnD (Scourge strike if DnD is of cooldown). Dumps RP with Death Coil to keep Dark Transformation rolling.
    -- Defensive and Offensive/Racial Cooldowns
    ---- Fully supports the use of defensive cooldowns(Healthstone, IBF, Death Pact, etc) at the selected health percentage if enabled through the PQI settings. Also maintains offensive/racial cooldowns(Blood Fury, Rocket Barrage, Unholy Frenzy, Gargoyle, etc).
    -- Key Bindings
    ---- Changeable Keys for things such as Anti-Magic Zone, Death and Decay, Pestilence and more.


    Change Log - Current Version: 1.0.1:
    3/5/2013: Fixed bug with soul reaper...
    3/3/2013: Released...
    Last edited by Kinkeh; 03-05-2013 at 11:12 PM.

  11. #8171
    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)
    Awesome Kinkeh ^^ I have given out too much reputation in the last 24h but as soon as Im off cd!

  12. #8172
    Weischbier's Avatar Member
    Reputation
    12
    Join Date
    Apr 2012
    Posts
    58
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Kinkeh View Post


    Unholy Death Knight Rotation - By: Kink

    Recommended Spec: Talent Calculator - Unholy Death Knight (non-selected talents are up to you)
    Profile currently only supports Unholy Blight and Blood Tap. It was created with general knowledge and guidelines of the current Unholy rotation while taking the changes coming with 5.2 into account, with that being said it will not work with 100% functionality in 5.1 because of those changes (Summon Gargoyle no longer costing runic power and Plague strike now applying Frost Fever).
    PQI 2.0.0 is required for customization!
    Download: Unholy Infusion - SVN Depository
    Skype: iiKink (Feel free to contact me about feedback or suggestions, always looking to make changes for the better as the current profile was created on my own knowledge and there may be better ways of doing things)

    Features:
    -- Single Target Rotation
    ---- The main priority of the single target rotation is to get your ghoul into Dark Transformation and maintain it throughout the fight, while it is transformed the profile conserved RP to blow as soon as the buff drops so we can start building SI stacks up again. It also mantains DnD during single target so make sure to have your mouse hovering over the thing you're smacking! (can be disabed, but not optimal to do so)
    -- AoE Rotation
    ---- The AoE rotation prioritizes getting 4 death runes using Festering Strike (if enabled) then maintains Blood Boil and DnD (Scourge strike if DnD is of cooldown). Dumps RP with Death Coil to keep Dark Transformation rolling.
    -- Defensive and Offensive/Racial Cooldowns
    ---- Fully supports the use of defensive cooldowns(Healthstone, IBF, Death Pact, etc) at the selected health percentage if enabled through the PQI settings. Also maintains offensive/racial cooldowns(Blood Fury, Rocket Barrage, Unholy Frenzy, Gargoyle, etc).
    -- Key Bindings
    ---- Changeable Keys for things such as Anti-Magic Zone, Death and Decay, Pestilence and more.


    Change Log:
    3/3/2013: Released...
    Bookmarked!

  13. #8173
    kuukuu's Avatar Contributor
    Reputation
    269
    Join Date
    Jul 2012
    Posts
    619
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Once 5.2 is launched I'll add that to the list Kinkeh.
    Former PQR Developer

  14. #8174
    paintpauller's Avatar Contributor
    Reputation
    128
    Join Date
    Jan 2012
    Posts
    265
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kuukuu View Post
    CheckInteractDistance() won't work for that? It has a couple different ranges if one fits what you need and it doesn't cause FPS lag.
    only wish i could use CheckInteractDistance() looked into it in the start but the ranges options are

    Number - A value from 1 to 4:
    1 = Inspect, 28 yards
    2 = Trade, 11.11 yards
    3 = Duel, 9.9 yards
    4 = Follow, 28 yards

    the range needed to interact with an NPC is 5.5... seeing the name you would think that would check the range for interacting with npc's but it does not =(

    Alpha Profiles: - All profiles with PQInterface support!
    Alpha Interrupt: https://goo.gl/OLhGi - Ignore List, Random Percentage, Time Delays, & much More!
    Alpha Utilities: https://goo.gl/rt7WA - Farming, Prospecting, Disenchanting, Milling, & Questing
    Alpha Moonkin: https://goo.gl/gjxw0 - Optimized DPS Rotation for PvE, Mashup of 3 Profiles
    Avery's Ret: https://goo.gl/GhurM - My take on Avery's outstanding Ret profile with PQI

  15. #8175
    daveyboyuk's Avatar Active Member
    Reputation
    31
    Join Date
    May 2009
    Posts
    201
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @kinkeh looking forward to tryin ur new unholy will +rep when possible

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:08 PM. 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