PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 535 of 779 FirstFirst ... 35435485531532533534535536537538539585635 ... LastLast
Results 8,011 to 8,025 of 11681
  1. #8011
    OnionsTich's Avatar Banned
    Reputation
    0
    Join Date
    Jul 2012
    Posts
    137
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does anyone think Sheuron will come back ever?

    PQR - Rotation Bot
  2. #8012
    evlow's Avatar Contributor
    Reputation
    171
    Join Date
    Sep 2007
    Posts
    233
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @OnionsTech ~ I constantly rank w/ Mentally's SP profile, i'd suggest you check it out..

  3. #8013
    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 OnionsTich View Post
    Does anyone think Sheuron will come back ever?
    Haven't seen them since the start of MoP so I doubt it.
    Former PQR Developer

  4. #8014
    ticklets's Avatar Member
    Reputation
    51
    Join Date
    Jun 2009
    Posts
    88
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by daveyboyuk View Post
    have to agree with you there disc was awesome profile pity wasnt updated for mop
    I'll release my mop Disc Priest profile soon..

  5. #8015
    kickmydog's Avatar Contributor
    Reputation
    257
    Join Date
    Jul 2011
    Posts
    635
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    update.

    KMD_All_Hunter_Rotations_v20.zip

    For some reason I didn't have the hunter talent Fervor coded. This has been rectified. Sorry about that.
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/422388-kickmydog-bm-mm-sv-hunter-profiles.html#post2793017

  6. #8016
    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 diesall View Post
    PQInterface v2.1.0 has been released head over to the wiki to download it

    There is documentation there for profile authors to add ingame saveable settings for their rotations.
    ( there is also an included sample deathknight rotation for profile authors to better understand implementation)

    PQInterface - PQRotation Wiki
    love what you have done with the addon!
    I am currently updating my Alpha Utilities profile to support it and the tooltip for the Hotkeys do not work. here is the code I am using maybe im doing it wrong (I'm new to coding and LUA =D)

    PHP Code:
        {       name "Till Soil ",
                
    enable false,
                
    hotkeys = {        },
                
    tooltip "Use this if you dont have a Master Plow",
        }, 
    Last edited by paintpauller; 02-22-2013 at 08:39 PM.

  7. #8017
    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)
    @ticklets awesome +rep

  8. #8018
    evlow's Avatar Contributor
    Reputation
    171
    Join Date
    Sep 2007
    Posts
    233
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by paintpauller View Post
    love what you have done with the addon!
    I am currently updating my Alpha Utilities profile to support it and the tooltip for the Hotkeys do not work. here is the code I am using maybe im doing it wrong (I'm new to coding and LUA =D)

    PHP Code:
        {       name "Till Soil ",
                
    enable false,
                
    hotkeys = {        },
                
    tooltip "Use this if you dont have a Master Plow",
        }, 
    I believe tooltips will only work if you have a widget defined, something like this

    PHP Code:
            {  name "Till Soil",      
                 
    enable false,    
                 
    widget = { type 'numBox',   
                 
    value 100,      
                 
    step 5,         
                 
    tooltip "Till Soil Tooltip",       
         },      
      }, 

  9. #8019
    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 evlow View Post
    I believe tooltips will only work if you have a widget defined, something like this

    PHP Code:
            {  name "Till Soil",      
                 
    enable false,    
                 
    widget = { type 'numBox',   
                 
    value 100,      
                 
    step 5,         
                 
    tooltip "Till Soil Tooltip",       
         },      
      }, 
    its not a widget, its a Hotkey.
    Hotkeys
    The following parameters can be used when constructing a hotkey table entry, name, enable and hotkeys are all required fields, tooltip is optional.
    name (String) - Display Name for the ability
    enable (boolean) - Default state of the ability
    hotkeys (table) - Default hotkeys, 'ls'= Left Shift, 'rs'=Right Shift, etc...
    tooltip (string) - tooltip for the hotkey
    thus why I was doing it like that.
    PHP Code:
        hotkeys = {
            {    
    name "Force Target Tilled Soil",        enable true,    hotkeys = {'la'},    },

            {    
    name "Till Soil",
                 
    enable false,
                
    hotkeys = {        },
                
    tooltip "Use this if you dont have a Master Plow",
            },
        }, 

  10. #8020
    diesall's Avatar Contributor
    Reputation
    199
    Join Date
    Jul 2011
    Posts
    212
    Thanks G/R
    1/48
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by paintpauller View Post
    love what you have done with the addon!
    I am currently updating my Alpha Utilities profile to support it and the tooltip for the Hotkeys do not work. here is the code I am using maybe im doing it wrong (I'm new to coding and LUA =D)

    PHP Code:
        {       name "Till Soil ",
                
    enable false,
                
    hotkeys = {        },
                
    tooltip "Use this if you dont have a Master Plow",
        }, 
    yeah that was my fault, when i re factored my code that variable slipped through, just re download the addon from the wiki it should be fixed

  11. #8021
    evlow's Avatar Contributor
    Reputation
    171
    Join Date
    Sep 2007
    Posts
    233
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    aww cool, yea i was trying that myself, thx diesall!

  12. #8022
    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 diesall View Post
    yeah that was my fault, when i re factored my code that variable slipped through, just re download the addon from the wiki it should be fixed
    Thanks! also on the wiki it states that
    Every configuration table requires a name, author and at least one ability or hotkey table
    however whenever I try to leave out Hotkeys it will not load the config. here is a example:
    PHP Code:
    local config1 = {
        
    name    'Test',
        
    author    'Alpha_Utilities',
        
    abilities = {
            {    
    name "Utility",
                
    enable true,
                
    widget = { type 'select',
                    
    values = {     "Farming""Disenchant""Mill""Prospect",    },
                    
    value "Farming",
                    
    tooltip "Select one!",
                    
    width  80,
                },
            },
        },

    am I doing something wrong?

    Edit: just updated and tooltips are working great!
    Last edited by paintpauller; 02-22-2013 at 10:33 PM.

  13. #8023
    osbornx22's Avatar Sergeant
    Reputation
    14
    Join Date
    Nov 2009
    Posts
    69
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    has anyone a list of spell ids for tremor totem?

  14. #8024
    evlow's Avatar Contributor
    Reputation
    171
    Join Date
    Sep 2007
    Posts
    233
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by osbornx22 View Post
    has anyone a list of spell ids for tremor totem?
    I believe it is 8143

  15. #8025
    diesall's Avatar Contributor
    Reputation
    199
    Join Date
    Jul 2011
    Posts
    212
    Thanks G/R
    1/48
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by paintpauller View Post
    Thanks! also on the wiki it states that however whenever I try to leave out Hotkeys it will not load the config. here is a example:
    PHP Code:
    local config1 = {
        
    name    'Test',
        
    author    'Alpha_Utilities',
        
    abilities = {
            {    
    name "Utility",
                
    enable true,
                
    widget = { type 'select',
                    
    values = {     "Farming""Disenchant""Mill""Prospect",    },
                    
    value "Farming",
                    
    tooltip "Select one!",
                    
    width  80,
                },
            },
        },

    am I doing something wrong?

    Edit: just updated and tooltips are working great!
    that works for me, make sure your sending the config table to PQI, by calling PQI:AddRotation(config1) after your table.
    also values is a [key] => value table, so in your case 1|2|3|4 will be sent back to PQR, if you want it to send back Farming, Mill, etc... to PQR use values = { Farming = "Farming", Mill = "Mill"}


    dont forget when your finished editing your config table to put an if then clause at the top of the ability so your not constantly sending the table to PQR...

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 07:54 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