[BETA] PQRotation - an automated ability priority queue. menu

Shout-Out

User Tag List

Page 119 of 731 FirstFirst ... 1969115116117118119120121122123169219619 ... LastLast
Results 1,771 to 1,785 of 10955
  1. #1771
    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)
    Is there a way to check if a player is your focus target?

    [BETA] PQRotation - an automated ability priority queue.
  2. #1772
    onya's Avatar Member
    Reputation
    67
    Join Date
    May 2008
    Posts
    152
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ticklets View Post
    Is there a way to check if a player is your focus target?
    I'm not sure what you mean, do you want to check if your target and focus are the same unit? What are you trying to do?

  3. #1773
    michaelsky's Avatar Member
    Reputation
    1
    Join Date
    Sep 2008
    Posts
    20
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sub rogue profile anywhere? pve

  4. #1774
    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 onya View Post
    I'm not sure what you mean, do you want to check if your target and focus are the same unit? What are you trying to do?
    I'm basically trying to create a code to add to bu_ba's holy profile rotation that will keep beacon of light up on the focus target.

    I've tried different things but nothing seem's to work, any help would be appreciated.

  5. #1775
    bu_ba_911's Avatar Elite User
    Reputation
    552
    Join Date
    May 2006
    Posts
    1,638
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ticklets View Post
    I'm basically trying to create a code to add to bu_ba's holy profile rotation that will keep beacon of light up on the focus target.

    I've tried different things but nothing seem's to work, any help would be appreciated.
    i'm not done with the pve by ANY means, i've just been focusing on PvP because lostinthewoodslol has been the driving force for this whole rotation lol

    and he keeps giving me so many good ideas for the pvp rotation it's going to take me a little bit more time before i can finish it and focus on PvE. I only wanted to get PvE workign tot the extent that you can do it in dungeons/raids during trash pulls and stuff without having to worry about it. PvE needs much refinement.

    Also I want focus target to be the target you are attacking more often than not i've been thinking about trying to implement a check on who the tank is, or who currently has the Beacon of Light and designate them as Beacon Holder. That way if the beacon every drops to within 5 seconds remaining or returns nil, you will Re-Beacon that target That's what i'm going to try and implement at least Still need to fun the quick code check on Hands of Salvation and BoP first however
    ^0^Team Nova's PQR NCC ^0^

    If you think someone did something good, take the time to show your appreciation!

  6. #1776
    ajparenteau's Avatar Private
    Reputation
    1
    Join Date
    Jun 2010
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how do i load a profile

  7. #1777
    bu_ba_911's Avatar Elite User
    Reputation
    552
    Join Date
    May 2006
    Posts
    1,638
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ajparenteau View Post
    how do i load a profile
    you log-in to your character, open up the PQR_Rotations. Then from the drop-down menus, you will select the profile you want to load. Then in the blue text next to the drop down menu is the key-combination you press inside the game to enable/disable the profile in-game.
    ^0^Team Nova's PQR NCC ^0^

    If you think someone did something good, take the time to show your appreciation!

  8. #1778
    Kaolla's Avatar Contributor
    Authenticator enabled
    Reputation
    126
    Join Date
    Apr 2007
    Posts
    341
    Thanks G/R
    2/2
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm not certain if this has been posted already, but this is a simple bit of code that will prevent any wasteful or harmful actions if your target puts up an immunity (optimized for a Frost DK).

    I left out abilities such as Hand of Protection, AMS and Cloak of Shadows, as my class has a way of circumventing them, but they're easy to add if needed
    Code:
    Name: Immunities
    Spell ID: 0
    Delay: 0
    Target: Player
    
    if UnitBuff("target","Divine Shield") or UnitBuff("target","Deterrence") or UnitBuff("target","Ice Block") or UnitDebuff("target","Cyclone") then
        SpellStopCasting()
        return true
    end
    I stuck it near the top of my rotation, just beneath the survivability things like IBF and Healthstones.

  9. #1779
    bu_ba_911's Avatar Elite User
    Reputation
    552
    Join Date
    May 2006
    Posts
    1,638
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Kaolla View Post
    I'm not certain if this has been posted already, but this is a simple bit of code that will prevent any wasteful or harmful actions if your target puts up an immunity (optimized for a Frost DK).

    I left out abilities such as Hand of Protection, AMS and Cloak of Shadows, as my class has a way of circumventing them, but they're easy to add if needed
    Code:
    Name: Immunities
    Spell ID: 0
    Delay: 0
    Target: Player
    
    if UnitBuff("target","Divine Shield") or UnitBuff("target","Deterrence") or UnitBuff("target","Ice Block") or UnitDebuff("target","Cyclone") then
        SpellStopCasting()
        return true
    end
    I stuck it near the top of my rotation, just beneath the survivability things like IBF and Healthstones.
    no i haven't seen this added yet, and i was already building this into my holy paladin rotation +rep for beating me out!
    ^0^Team Nova's PQR NCC ^0^

    If you think someone did something good, take the time to show your appreciation!

  10. #1780
    Kaolla's Avatar Contributor
    Authenticator enabled
    Reputation
    126
    Join Date
    Apr 2007
    Posts
    341
    Thanks G/R
    2/2
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bu_ba_911 View Post
    no i haven't seen this added yet, and i was already building this into my holy paladin rotation +rep for beating me out!
    <3 And +rep for being one of the cleverest profile writers there is

  11. #1781
    jadethread's Avatar Member
    Reputation
    6
    Join Date
    Oct 2009
    Posts
    108
    Thanks G/R
    0/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nevermind.

  12. #1782
    onya's Avatar Member
    Reputation
    67
    Join Date
    May 2008
    Posts
    152
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ticklets View Post
    I'm basically trying to create a code to add to bu_ba's holy profile rotation that will keep beacon of light up on the focus target.

    I've tried different things but nothing seem's to work, any help would be appreciated.
    edit the beacon ability UnitBuffID should be checking the focus, ie UnitBuffID("focus", 53563) and the target at the top of the ability (the drop down list) should also be set to focus.

  13. #1783
    playa512's Avatar Member
    Reputation
    1
    Join Date
    Dec 2007
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i cannot open the wow process
    in the field is " edit mode ( no bot functionality) " written-.-
    Can anybody help me=

  14. #1784
    onya's Avatar Member
    Reputation
    67
    Join Date
    May 2008
    Posts
    152
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by playa512 View Post
    i cannot open the wow process
    in the field is " edit mode ( no bot functionality) " written-.-
    Can anybody help me=
    you need to have wow open first, in windowed mode or windowed full screen, can't be full screen.

  15. #1785
    playa512's Avatar Member
    Reputation
    1
    Join Date
    Dec 2007
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hm does this work on wotlk 3.3.5a server??

Similar Threads

  1. [Buying] Planetside 2 Priority Beta Key
    By isit123 in forum General MMO Buy Sell Trade
    Replies: 0
    Last Post: 07-21-2012, 06:34 AM
  2. [Selling] PLANETSIDE 2 Priority/Early Access Beta Account
    By Kabraxiss in forum General MMO Buy Sell Trade
    Replies: 0
    Last Post: 07-18-2012, 10:20 AM
  3. [Selling] Planetside 2 Priority/Early access Beta Keys
    By mrsluf in forum General MMO Buy Sell Trade
    Replies: 3
    Last Post: 07-17-2012, 04:45 AM
  4. [Selling] Planetside 2 Priority Access beta key codes
    By fatalefout in forum General MMO Buy Sell Trade
    Replies: 1
    Last Post: 06-26-2012, 04:08 PM
  5. [Bot] Automated dungeon queue / Justice Point leecher(Auto-it source)
    By s_e_a_n_66 in forum World of Warcraft Bots and Programs
    Replies: 36
    Last Post: 01-17-2011, 11:50 AM
All times are GMT -5. The time now is 06:48 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