PQR - Rotation Bot menu

User Tag List

Page 536 of 779 FirstFirst ... 36436486532533534535536537538539540586636 ... LastLast
Results 8,026 to 8,040 of 11681
  1. #8026
    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)
    Originally Posted by evlow View Post
    I believe it is 8143
    I dont mean the tremor spell id itself, i mean all the debuffs, which tremor dispells, like fear, etc.

    PQR - Rotation Bot
  2. #8027
    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
    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...
    lol just tried it with the example I made to post and it worked (wounder what i was doing when testing it =O )

    thanks for the head up on the [key] => value thing I would never have figured out why it wasnt working lol, I changed it to:
    PHP Code:
        name    'Farming',
        
    author    'Alpha_Utilities',
        
    abilities = {
            {    
    name "Utility",
                
    enable true,
                
    widget = { type 'select',
                    
    values = { Farming "Farming"Disenchant "Disenchant"Mill "Mill"Prospect "Prospect" },
                    
    value "Farming",
                    
    tooltip "Select one!",
                    
    width  80,
                },
            },
        }, 
    but I get this error in chat
    [21:29:07] <PQInterface Error> Config:Farming Ability:Utility Selection Table is required to contain atleast 2 options to be valid
    [21:29:07] <PQInterface Error> Config:Disenchant Ability:Utility Selection Table is required to contain atleast 2 options to be valid
    here is what I have so far: (THIS IS VERY W.I.P.)
    PHP Code:
    local config1 = {
        
    name    'Farming',
        
    author    'Alpha_Utilities',
        
    abilities = {
            {    
    name "Utility",
                
    enable true,
                
    widget = { type 'select',
                    
    values = { Farming "Farming"Disenchant "Disenchant"Mill "Mill"Prospect "Prospect" },
                    
    value "Farming",
                    
    tooltip "Select one!",
                    
    width  80,
                },
            },
        },
        
    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",    },
                
               {    
    name "Destroy Targeted Plant",
                   
    enable true,
                   
    hotkeys = {'ls''la'},    
                   
    tooltip "Requires Dented Shovel",    },
        },
    }
    local config2 = {
        
    name    'Disenchant',
        
    author    'Alpha_Utilities',
        
    abilities = {
            {    
    name "Utility",
                
    enable true,
                
    widget = { type 'select',
                    
    values = { Farming "Farming"Disenchant "Disenchant"Mill "Mill"Prospect "Prospect" },
                    
    value "Disenchant",
                    
    tooltip "Select one!",
                    
    width  80,
                },
            },
            {     
    name "TEST",             newSection true,
                
    enable true,
            },
        },
        
    hotkeys = {
            {    
    name "pauses Disenchanting",        enable true,    hotkeys = {'ls'},    },
        },
    }

    if 
    IsLeftShiftKeyDown() then
        Alpha_Utilities_Farming 
    PQI:AddRotation(config1)
        
    Alpha_Utilities_Disenchant PQI:AddRotation(config2)
    end 
    PS: how do you put something in a spoiler tag? =D

  3. #8028
    jh16's Avatar Contributor
    Reputation
    323
    Join Date
    Feb 2012
    Posts
    321
    Thanks G/R
    10/46
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by paintpauller View Post
    PS: how do you put something in a spoiler tag? =D
    [spoiler]I don't think OwnedCore has the spoiler tags set up. If they did you would have to click on a button to show this message. :P[/spoiler]

  4. #8029
    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
    Abilities
    The following parameters can be used when constructing an ability table entry, note that Name and enable are the only required fields every other field is optional
    name (String) - Display Name for the ability
    enable(boolean) - Default state of the ability
    tooltip(String) - Tooltip for the ability
    widget (table) - See below
    newSection (boolean) - creates a new section between abilties (visually break up groups of abilities to make them easier to read when presenting the user with alot of ablities)
    Tooltips for Abilities dont work too =( here is a example of what I was doing (again could be off in my coding =D)

    PHP Code:
            {     name "J.C. Neck & Ring (Greens)",
                
    enable true,
                
    tooltip "Do you want to disenchant them?",
            }, 
    EDIT: also is there a way to color the word (Greens) green? =p
    Last edited by paintpauller; 02-23-2013 at 12:04 AM.

  5. #8030
    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 jh16 View Post
    [spoiler]I don't think OwnedCore has the spoiler tags set up. If they did you would have to click on a button to show this message. :P[/spoiler]
    ya tried that =D

  6. #8031
    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 way to have a decimal in the NumBox Widget? I need to be extremely precise in this variable.

    PHP Code:
            {     name "Overclock Speed",             newSection true,
                
    enable false,
                
    tooltip "Overclocking will cause Blizzard Error Messages!",
                
    widget = { type 'numBox',
                    
    value = (1.5),
                    
    min = (.5),
                    
    max 3,
                    
    step = (.5),
                    
    tooltip "Overclocking will cause Blizzard Error Messages!",
                },
            }, 

  7. #8032
    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)
    found a bug when scaling down the range of the Widget-NumBox, with a max of a low number the blue frame will extend past where intended.

    here is the code if you want to reproduce the bug:
    Edit: did some testing and its only noticeable when you start to use a max below 25, hope this helps.
    PHP Code:
            {     name "Overclock Speed",             newSection true,
                
    enable false,
                
    tooltip "Overclocking will cause Blizzard Error Messages!",
                
    widget = { type 'numBox',
                    
    value 1,
                    
    min 1,
                    
    max 5,
                    
    step 1,
                    
    width 50,
                    
    tooltip "Overclocking will cause Blizzard Error Messages!",
                },
            }, 
    Last edited by paintpauller; 02-23-2013 at 01:08 AM.

  8. #8033
    diesall's Avatar Contributor
    Reputation
    105
    Join Date
    Jul 2011
    Posts
    165
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by paintpauller View Post
    found a bug when scaling down the range of the Widget-NumBox, with a max of a low number the blue frame will extend past where intended.

    here is the code if you want to reproduce the bug:
    Edit: did some testing and its only noticeable when you start to use a max below 25, hope this helps.
    PHP Code:
            {     name "Overclock Speed",             newSection true,
                
    enable false,
                
    tooltip "Overclocking will cause Blizzard Error Messages!",
                
    widget = { type 'numBox',
                    
    value 1,
                    
    min 1,
                    
    max 5,
                    
    step 1,
                    
    width 50,
                    
    tooltip "Overclocking will cause Blizzard Error Messages!",
                },
            }, 
    Fixed all those issues, 2.1.1 has just been uploaded to the wiki,

    to use decimals just enter them as you would integers:
    Code:
    widget = {
        type = 'numBox', 
        value = 1.5, 
        min = .5, 
        max = 3, 
        step = .5, 
        tooltip = "Overclocking will cause Blizzard Error Messages!", 
     },
    Note: there is a variable debugger you can activate in PQInterfaces options, useful if your curious what PQI is sending to its PQR variables, variable types are color coded: green = string, yellow = number, blue = boolean
    Last edited by diesall; 02-23-2013 at 02:13 AM.

  9. #8034
    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 paintpauller View Post
    Tooltips for Abilities dont work too =( here is a example of what I was doing (again could be off in my coding =D)

    PHP Code:
            {     name "J.C. Neck & Ring (Greens)",
                
    enable true,
                
    tooltip "Do you want to disenchant them?",
            }, 
    EDIT: also is there a way to color the word (Greens) green? =p
    Try:

    PHP Code:
     name "J.C. Neck & Ring (|cff00ff00Greens|cffffffff)",


    and

    name "J.C. Neck & Ring (|cff0000ffBlues|cffffffff)"
    Respectively.

    If Diesall's addon loads those right, IT SHOULD make the text the right color.

  10. #8035
    booisback's Avatar Private
    Reputation
    1
    Join Date
    Oct 2012
    Posts
    11
    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 forgot the synapse springs, It will be added in the next update. I was trying to push out an update with frames to let peps know that i'm still here. as for the persistent between sessions, you mean if you quit wow and come back? or if you switch toons and switch back?

    if you quit wow the settings will 'reset' to my default (i'll add a comment in the code that will show you how/where to set up modkeys without using the frame if your changing each time.)
    if you switch toons and switch back the settings should remain the same.



    I'm glad your liking it. What I have planned is if Black Arrow is on CD or Explosive Trap is on CD to cast Snake trap instead. As for the ice trap, since it shares a CD with Freezing how would you like me to do it.

    Frame Choice Like:
    Freezing Trap
    Frost Trap

    and you select one and thats what it uses or


    if in combat use frost trap if out of combat use freezing or in a differ way?

    i rarely use freezing trap but thats not to say im right others may. Just having the option in frames should do the trick for both me,
    and someone who preffers to use freezing for cc

  11. #8036
    diesall's Avatar Contributor
    Reputation
    105
    Join Date
    Jul 2011
    Posts
    165
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @ imdasandman : i need to know what data files you have loaded and rotations att he time of the error, excluding my data and profile files

  12. #8037
    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 firepong View Post
    Try:

    PHP Code:
     name "J.C. Neck & Ring (|cff00ff00Greens|cffffffff)",


    and

    name "J.C. Neck & Ring (|cff0000ffBlues|cffffffff)"
    Respectively.

    If Diesall's addon loads those right, IT SHOULD make the text the right color.
    thanks! worked like a charm =D

  13. #8038
    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)
    @diesall Thanks for all the help and quick responses/updates!

    is there any chance to get
    PHP Code:
    newSection true
    added to hotkeys? that would be great if it wasn't to much of a hassle =D

  14. #8039
    fredrikangelsen's Avatar Member
    Reputation
    1
    Join Date
    Oct 2009
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi, is it possible to make pqr simulate key press when abilities are returned true?

  15. #8040
    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 fredrikangelsen View Post
    Hi, is it possible to make pqr simulate key press when abilities are returned true?
    No...........(10char)

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:12 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search