PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 379 of 779 FirstFirst ... 279329375376377378379380381382383429479 ... LastLast
Results 5,671 to 5,685 of 11681
  1. #5671
    Kinky's Avatar Banned CoreCoins Purchaser
    Reputation
    481
    Join Date
    Nov 2008
    Posts
    500
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cameronmc88 View Post
    @mentally how is the demo profile?
    Almost done! I expect to be done within tonight.

    PQR - Rotation Bot
  2. #5672
    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)
    Again cameron, clear your sent pm's as well. Cant send you pm's otherwise.

  3. #5673
    Thidan's Avatar Contributor
    Reputation
    299
    Join Date
    Jan 2007
    Posts
    1,009
    Thanks G/R
    2/15
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there any way to add "Aspect of the Cheetah" while out of combat?
    +Rep if you're able to help me.


  4. #5674
    lawlmoto's Avatar Active Member
    Reputation
    20
    Join Date
    Feb 2008
    Posts
    122
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Thidan View Post
    Is there any way to add "Aspect of the Cheetah" while out of combat?
    +Rep if you're able to help me.
    To kmds?

    Sent from my Galaxy Nexus using Tapatalk 2

  5. #5675
    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)
    good to see you bk mentaly looking forward to lock profile and thx for priest

  6. #5676
    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 Thidan View Post
    Is there any way to add "Aspect of the Cheetah" while out of combat?
    +Rep if you're able to help me.
    Code:
    if not UnitAffectingCombat("player") then
       return true
    end

  7. #5677
    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 Thidan View Post
    Is there any way to add "Aspect of the Cheetah" while out of combat?
    +Rep if you're able to help me.
    This is what i use in mine, just make a new ability for it, spellid is 0
    PHP Code:
    --Code By Crystal_tech
    ---If running without mount and out of combat then cast Aspect of the Cheetah
    if not UnitAffectingCombat("player")
        and 
    not IsMounted()
        and 
    PQR_IsMoving(4)
        and 
    not UnitIsDead("player"then
            
    if GetShapeshiftForm() ~= 3 then
                CastShapeshiftForm
    (3)
                return 
    true
            end
    end
    --End Code By Crystal_tech 

    Please if someone helped you donate rep to them.

  8. #5678
    Taran32's Avatar Knight-Lieutenant
    Reputation
    9
    Join Date
    Feb 2012
    Posts
    369
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crystal_tech View Post
    This is what i use in mine, just make a new ability for it, spellid is 0
    PHP Code:
    --Code By Crystal_tech
    ---If running without mount and out of combat then cast Aspect of the Cheetah
    if not UnitAffectingCombat("player")
        and 
    not IsMounted()
        and 
    PQR_IsMoving(4)
        and 
    not UnitIsDead("player"then
            
    if GetShapeshiftForm() ~= 3 then
                CastShapeshiftForm
    (3)
                return 
    true
            end
    end
    --End Code By Crystal_tech 
    Crystal, is there a simple AOE toggle code available for Hunters? Something I could basically plop right into an existing profile instead of using a separate one altogether?

  9. #5679
    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 Taran32 View Post
    Crystal, is there a simple AOE toggle code available for Hunters? Something I could basically plop right into an existing profile instead of using a separate one altogether?
    i've switched to a toggle switch for cds and such:

    PHP Code:
    --Code by Crystal_tech
    ---my moded switch code
    if modtime == nil then
        modtime 
    0
    end

    ---Toggle for Main CDs
    if IsLeftShiftKeyDown() and GetTime() - modtime .2 then
        modtime 
    GetTime()
        if 
    CDSwap then 
            CDSwap 
    nil
            PQR_WriteToChat
    ("Cooldowns: \124cFFE61515Disabled")
        else
            
    CDSwap 1
            PQR_WriteToChat
    ("Cooldowns: \124cFF15E615Enabled")
        
    end
    end

    --End Code By Crystal_tech 
    put it at the top of the rotation but below setup stuff and you'll see a msg when you hit left shift. Change 'IsLeftShiftKeyDown()' to any key you want. Spellid 0.

    now to make it work with other spells you need to add a check with the var defined in the switch code I use CDSwap.

    so eg to use cd only if its enabled is:

    PHP Code:
    --Use ability if enabled
    if CDSwap then return true end

    or
    --
    don't use this ability if switch is enabled
    if not CDSwap then return true end 

    Please if someone helped you donate rep to them.

  10. #5680
    Taran32's Avatar Knight-Lieutenant
    Reputation
    9
    Join Date
    Feb 2012
    Posts
    369
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crystal_tech View Post
    i've switched to a toggle switch for cds and such:

    PHP Code:
    --Code by Crystal_tech
    ---my moded switch code
    if modtime == nil then
        modtime 
    0
    end

    ---Toggle for Main CDs
    if IsLeftShiftKeyDown() and GetTime() - modtime .2 then
        modtime 
    GetTime()
        if 
    CDSwap then 
            CDSwap 
    nil
            PQR_WriteToChat
    ("Cooldowns: \124cFFE61515Disabled")
        else
            
    CDSwap 1
            PQR_WriteToChat
    ("Cooldowns: \124cFF15E615Enabled")
        
    end
    end

    --End Code By Crystal_tech 
    put it at the top of the rotation but below setup stuff and you'll see a msg when you hit left shift. Change 'IsLeftShiftKeyDown()' to any key you want. Spellid 0.

    now to make it work with other spells you need to add a check with the var defined in the switch code I use CDSwap.

    so eg to use cd only if its enabled is:

    PHP Code:
    --Use ability if enabled
    if CDSwap then return true end

    or
    --
    don't use this ability if switch is enabled
    if not CDSwap then return true end 
    Can you explain the 2nd part a bit better? I get that I need to put my "AOE Toggle" at the top, but I', not sure what you mean about adding this to existing codes. I essentially want a basic Multi-Shot AOE toggle with the behaviors you guys already have in place for keeping that active (Steady Shots to maintain focus, etc).

  11. #5681
    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 Taran32 View Post
    Can you explain the 2nd part a bit better? I get that I need to put my "AOE Toggle" at the top, but I', not sure what you mean about adding this to existing codes. I essentially want a basic Multi-Shot AOE toggle with the behaviors you guys already have in place for keeping that active (Steady Shots to maintain focus, etc).
    once you get the switch coded you add the var CDSwap to your spells that you want to cast with it enabled.

    if CDSwap then cast multishot end

    if you are looking to disable a spell then at the top of the spells you want disabled then type this

    if CDSwap then return false end

    if you need more examples check out my hunter code: https://dl.dropbox.com/u/23527046/Surhunter.rar

    Please if someone helped you donate rep to them.

  12. #5682
    Taran32's Avatar Knight-Lieutenant
    Reputation
    9
    Join Date
    Feb 2012
    Posts
    369
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crystal_tech View Post
    once you get the switch coded you add the var CDSwap to your spells that you want to cast with it enabled.

    if CDSwap then cast multishot end

    if you are looking to disable a spell then at the top of the spells you want disabled then type this

    if CDSwap then return false end

    if you need more examples check out my hunter code: https://dl.dropbox.com/u/23527046/Surhunter.rar
    OK thanks.

  13. #5683
    ianmalcolmx's Avatar Member
    Reputation
    6
    Join Date
    Apr 2008
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there any sort of guide on how to code rotations/abilities? I really want to understand the wonderful profiles you have all contributed, and hopefully contribute some of my own. I'm not familiar with whatever language is being used, but I learn pretty fast. Can anybody point me in the right direction? I don't want to be a "Lazy Leecher" anymore :P

  14. #5684
    Kinky's Avatar Banned CoreCoins Purchaser
    Reputation
    481
    Join Date
    Nov 2008
    Posts
    500
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @ian: The language it's written in is LUA. You can find a lot of resources through wowpedia.com, lua.org and wowpedia's WoW API documentation pages.
    Last edited by Kinky; 11-05-2012 at 09:56 PM.

  15. #5685
    reapagedk's Avatar Member
    Reputation
    9
    Join Date
    Sep 2009
    Posts
    62
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hey Kinkeh the DND isn't working on right shift it only switches between single target and aoe mode

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