PQR - Rotation Bot menu

User Tag List

Page 580 of 779 FirstFirst ... 80480530576577578579580581582583584630680 ... LastLast
Results 8,686 to 8,700 of 11681
  1. #8686
    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 expunge View Post
    Who is updating this one?
    Mentally, it's her profile hub for future releases under the Hysteria name, hence "Mentally's Hysteria" in the url ;p.

    PQR - Rotation Bot
  2. #8687
    darrick's Avatar Private
    Reputation
    1
    Join Date
    Mar 2013
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey I need some help I have pqr downloaded but I cant get any of the profiles to work... Im trying to get them to work for a resto druid and feral druid any ideas on what I can do?

  3. #8688
    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)
    are all mentally profiles lock in particular on new svn aswell ?

  4. #8689
    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 daveyboyuk View Post
    are all mentally profiles lock in particular on new svn aswell ?
    Yes they are.
    Last edited by HI5; 03-18-2013 at 03:13 AM.

  5. #8690
    saga3180's Avatar Knight-Lieutenant
    Reputation
    6
    Join Date
    Sep 2011
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can someone tell me why this always uses holy prism on a member instead of the boss( even tohe the boss is targeted it still uses it on a random member)?

    if IsLeftControlKeyDown()
    then
    PQR_CustomTarget = members[1].Unit
    return true
    end

  6. #8691
    ashdale's Avatar Corporal
    Reputation
    9
    Join Date
    Jun 2012
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by saga3180 View Post
    Can someone tell me why this always uses holy prism on a member instead of the boss( even tohe the boss is targeted it still uses it on a random member)?

    if IsLeftControlKeyDown()
    then
    PQR_CustomTarget = members[1].Unit
    return true
    end
    With the line PQR-CustomTarget in there and eual to members[1].Unit it will always target the raid member unit... If i'm understanding you right you have the boss targeted youself and want HP to fire into him, I would change it to

    if IsLeftControlKeyDown()
    then return true
    end

    and then in the config box on the bottom left side of PQR, at the bottom set the Spell ID to "114165" and Target to "Target" and this will fire off HP anytime you have the left control key down and fire it into the mob you have currently targeted.

  7. #8692
    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)
    still no plans on updating frost kink ? , im still using the old one cant find a better replacement

  8. #8693
    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 daveyboyuk View Post
    still no plans on updating frost kink ? , im still using the old one cant find a better replacement
    Nope no plans, honestly surprising that you can still use it? o.o figured anything would be better at this point, highly doubt rubim's aren't.

  9. #8694
    BallisticJoker's Avatar Sergeant
    Reputation
    10
    Join Date
    Aug 2012
    Posts
    53
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Kinkeh View Post
    Nope no plans, honestly surprising that you can still use it? o.o figured anything would be better at this point, highly doubt rubim's aren't.
    Honestly - UH is kicking Frost's ass right now. Just wondering if you'll implement a festerblight priority system? Would be awesome if it supported it :P

    The profile works flawlessly still!

  10. #8695
    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)
    what would be the best way to register a list of events with out having to make a frame per event? and then be able to do stuff on different events.

    ex.
    if event == "PLAYER_ENTERING_WORLD" then
    print("hello world")
    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

  11. #8696
    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
    what would be the best way to register a list of events with out having to make a frame per event? and then be able to do stuff on different events.

    ex.
    if event == "PLAYER_ENTERING_WORLD" then
    print("hello world")
    end
    You can register multiple events per frame

    PHP Code:
    local CrazyFrame CreateFrame("Frame")
    CrazyFrame:RegisterEvent("COMBAT_LOG_EVENT_UNFILTERED")
    CrazyFrame:RegisterEvent("PLAYER_ENTERING_WORLD")
    CrazyFrame:RegisterEvent("PLAYER_ENTER_COMBAT")
    CrazyFrame:SetScript("OnEvent"CrazyFrame_OnEvent)
    CrazyFrame:Show() 
    PHP Code:
    function CrazyFrame_OnEvent(selfevent,...)
       if 
    event=="COMBAT_LOG_EVENT_UNFILTERED" then   
              
    -- Do Something  
       
    elseif event == "PLAYER_ENTERING_WORLD" then        
              
    -- Do Something Else    
       elseif 
    event == "PLAYER_ENTER_COMBAT" then         
             
    -- Yet Again Do Something    
       end
    end 
    Last edited by evlow; 03-17-2013 at 06:45 AM.

  12. #8697
    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)
    ohhh wow that makes it 100 times easier. while testing I couldn't get it to work with more then one event... looking at that I think I know what I was doing wrong.

    on a side note I have always wondered what (self, event,...) is for. what does self equal and what else is passed in the ... and what do they equal?

    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

  13. #8698
    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)
    • self - Reference to the widget for which the script was run (frame)
    • event - Name of the event (string)
    • ... - Arguments specific to the event (list)

  14. #8699
    Weird0's Avatar Contributor
    Reputation
    137
    Join Date
    Jan 2009
    Posts
    352
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ive been now trying to find a 5.2 updated hunter profile (dont really care at this point anymore if bm/sv or marksman) for several days and the closest thing i found was a 3 week old release from kickmydog...

    anyone know of some updated ones ?

  15. #8700
    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 Weird0 View Post
    ive been now trying to find a 5.2 updated hunter profile (dont really care at this point anymore if bm/sv or marksman) for several days and the closest thing i found was a 3 week old release from kickmydog...

    anyone know of some updated ones ?
    http://www.ownedcore.com/forums/worl...ml#post2232994 ([PQR] Nova Team Profiles)

    Crystal has been maintaining his hunter profiles along with updating them for 5.2.

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