PQR - Rotation Bot menu

User Tag List

Page 627 of 779 FirstFirst ... 127527577623624625626627628629630631677727 ... LastLast
Results 9,391 to 9,405 of 11681
  1. #9391
    Barratt2rika's Avatar Private
    Reputation
    1
    Join Date
    Apr 2013
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Please do some searching before making posts.

    PQR - Rotation Bot
  2. #9392
    boxo's Avatar Member
    Reputation
    2
    Join Date
    Jan 2012
    Posts
    92
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    quick question about writing a rotation with toggles. Ripping off Sheuron's code, there is:

    Code:
    GroupInfo() 
    CastClick() 
    ModSwitch(IsLeftAltKeyDown(),"canAOE","\124cFFD4D4D4Single target","\124cFF3BB0FFArea of Effect") 
    ModSwitch(IsRightShiftKeyDown(),"dontSB","\124cFF4FF763Shield Block enabled","\124cFFF74F4FShield Block disabled") 
    ModSwitch(IsRightAltKeyDown(),"dontCD","\124cFF4FF763Cooldowns enabled","\124cFFF74F4FCooldowns disabled")
    So, if I wanted to do a similar thing in another profile, do i just have to define "modswitch(isleftaltkeydown(),"AOE")" and then add "if AOE..." to aoe abilities?

  3. #9393
    WWF's Avatar Active Member
    Reputation
    31
    Join Date
    Jul 2010
    Posts
    215
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    R\L Alt, Ctrl, Shift, mousebutton(x), how to use other buttons like F1-12 and abc...?

  4. #9394
    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 WWF View Post
    R\L Alt, Ctrl, Shift, mousebutton(x), how to use other buttons like F1-12 and abc...?
    If I recall correctly we are able to use WoW's own modifier-buttons, some profiles make macros to queue abilities in which can be used by any key ofc.

  5. #9395
    CodeMyLife's Avatar Contributor
    Reputation
    272
    Join Date
    Mar 2013
    Posts
    707
    Thanks G/R
    24/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Personally I'm using in-game macros that I bind to a key in the keybinds in-game. To achieve this, you will need a Nova Data and Init if i could say.

    There's my AoE Toggle macro script. As I said, it will not work alone. You will need some functions to make it work but for exemple, most of the actual Nova profiles would support this.

    Credits goes to Team Nova for this code.

    SLASH_AOE1 = "/aoe"
    function SlashCmdList.AOE(msg, editbox)
    if not GetCVarBool("Nova_AoE") then
    if not GetCVarBool("Nova_Recording") then
    PQR_WriteToChat("|cffFF78A0Area of Effect.")
    PQR_Event("PQR_Text", "CodeMyLife AoE", nil, "CC3399")
    end
    SetCVar("Nova_AoE", 1)
    else
    if not GetCVarBool("Nova_Recording") then
    PQR_WriteToChat("|cffFF78A0Single Target.")
    PQR_Event("PQR_Text", "CodeMyLife Single", nil, "CC3399")
    end
    SetCVar("Nova_AoE", 0)
    end
    end
    I hope this will give you ideas. A thing is sure, binding any key is actually possible.
    Last edited by CodeMyLife; 04-16-2013 at 03:55 PM.

  6. #9396
    DiabloFan's Avatar Master Sergeant
    Reputation
    10
    Join Date
    Sep 2011
    Posts
    80
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by boxo View Post
    quick question about writing a rotation with toggles. Ripping off Sheuron's code, there is:

    Code:
    GroupInfo() 
    CastClick() 
    ModSwitch(IsLeftAltKeyDown(),"canAOE","\124cFFD4D4D4Single target","\124cFF3BB0FFArea of Effect") 
    ModSwitch(IsRightShiftKeyDown(),"dontSB","\124cFF4FF763Shield Block enabled","\124cFFF74F4FShield Block disabled") 
    ModSwitch(IsRightAltKeyDown(),"dontCD","\124cFF4FF763Cooldowns enabled","\124cFFF74F4FCooldowns disabled")
    So, if I wanted to do a similar thing in another profile, do i just have to define "modswitch(isleftaltkeydown(),"AOE")" and then add "if AOE..." to aoe abilities?
    Sheuron's profiles use a frame to display text such as "Rotation paused" instead of just printing to chat. Modswitch is the function for said frames. For a simpler solution you can just use something similar to what Team Nova does in some of their profiles. Credit to them for this code.

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

    if IsLeftAltKeyDown() and GetTime() - modtime 1 then
        modtime 
    GetTime()
        if 
    UseAOE then
            UseAOE 
    nil
            PQR_WriteToChat
    ("AoE: \124cFFE61515Disabled")
        else
            
    UseAOE true
            PQR_WriteToChat
    ("AoE: \124cFF15E615Enabled")
        
    end
    end 
    Then you just add this line to any abilities that you want to be used for AOE only.

    PHP Code:
    if UseAOE then 
    The other way to do it is to use PQR_SwapRotation which means you can have completely separate rotations for single target and AOE though I find keeping them to a single profile to be preferable. It's a little harder to set up overall but it's cleaner.

  7. #9397
    boxo's Avatar Member
    Reputation
    2
    Join Date
    Jan 2012
    Posts
    92
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DiabloFan View Post
    snip
    Actually, that's exactly what i was looking for. I'm jsut trying to put together a simple profile that uses toggles similar to sheuron's.

  8. #9398
    DiabloFan's Avatar Master Sergeant
    Reputation
    10
    Join Date
    Sep 2011
    Posts
    80
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by boxo View Post
    Actually, that's exactly what i was looking for. I'm jsut trying to put together a simple profile that uses toggles similar to sheuron's.
    If you want to use Sheuron's code to display a frame rather than write to chat you'd want to use this with Sheuron's modswitch function.

    PHP Code:
    Modswitch(KeyVariableMessage1Message2
    So it'd look like:

    PHP Code:
    Modswitch(IsLeftAltKeyDown(), "ThisIsMyVariable""Variable activated""Variable deactivated"
    Message1 and Message2 are the messages displayed on the frame when activating or deactivating the switch. Then it's just a simple case of checking for the variable which in this case you'd do.

    PHP Code:
    if ThisIsMyVariable then
        blabbla
    end 
    But if you don't want to use the frame you're better off just using something like the Nova code as it works in pretty much the same way.
    Last edited by DiabloFan; 04-16-2013 at 04:53 PM.

  9. #9399
    Zeef's Avatar Private
    Reputation
    1
    Join Date
    Oct 2012
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    When I start my PQR everything is fine, i can load profiles and whatever, iam running wow in 32bit mode and i see my character name but when i start the rotation (with alt+x) both Wow and PQR crash, anyone has the same prblem?


    Edit: i use a 50 SV hunter with a SV Hunter rotation

  10. #9400
    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 Zeef View Post
    When I start my PQR everything is fine, i can load profiles and whatever, iam running wow in 32bit mode and i see my character name but when i start the rotation (with alt+x) both Wow and PQR crash, anyone has the same prblem?


    Edit: i use a 50 SV hunter with a SV Hunter rotation
    Most likely the wrong offsets. Use the ones posted on the last page by whoever posted them. Some of the stuff will make it seem like PQR is working, but in reality, it just does what yours is doing right now.

  11. #9401
    expunge's Avatar Knight-Lieutenant
    Reputation
    17
    Join Date
    Nov 2011
    Posts
    226
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Someone get the new offsets! lol

  12. #9402
    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 expunge View Post
    Someone get the new offsets! lol
    New offsets have been posted a few pages back and have been quoted on every page after since. Might help to go look there C.c

  13. #9403
    expunge's Avatar Knight-Lieutenant
    Reputation
    17
    Join Date
    Nov 2011
    Posts
    226
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by firepong View Post
    New offsets have been posted a few pages back and have been quoted on every page after since. Might help to go look there C.c
    Actually I screwed up and thought it patched last night. My mistake!

  14. #9404
    Mavmins's Avatar Contributor
    Reputation
    165
    Join Date
    Oct 2012
    Posts
    606
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can anyone tell me why i cant check if immolate is in range ?

    IsSpellInRange(tostring(GetSpellInfo(34), "focus") returns Empty Result, so does every other SpellID for immolate

    IsSpellInRange(tostring(GetSpellInfo(???)), "focus") for other spells works just fine

  15. #9405
    ph34rt3hcute1's Avatar Contributor Authenticator enabled
    Reputation
    287
    Join Date
    Nov 2012
    Posts
    734
    Thanks G/R
    7/61
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I've found some spells don't return range info, I usually use a spell with the same or close to the same range in those events.

    Sent from my Nexus 4 using Tapatalk 2
    BadRotations
    Developer

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 02:27 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