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

Shout-Out

User Tag List

Page 120 of 731 FirstFirst ... 2070116117118119120121122123124170220620 ... LastLast
Results 1,786 to 1,800 of 10955
  1. #1786
    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
    hm does this work on wotlk 3.3.5a server??
    no, only retail.

    [BETA] PQRotation - an automated ability priority queue.
  2. #1787
    Untouchablekill's Avatar Member
    Reputation
    1
    Join Date
    Sep 2011
    Posts
    46
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Please update your profile list to the ones that have been updated and what not and note what the update dates are/were

  3. #1788
    Xelper's Avatar ★ Elder ★
    Reputation
    1024
    Join Date
    Mar 2007
    Posts
    860
    Thanks G/R
    0/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm just going to guess Sheuron's is better... I do not play a warrior, I just made that profile for a friend fairly quickly... I barely spent any time on it.

  4. #1789
    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)
    Originally Posted by lostinthewoodslol View Post
    get a mana regen trink, all i can say. i healed bot last night, basic gear. 360ish. it was amazing.
    What kind of trinket should i be using?

  5. #1790
    dklcfr's Avatar Master Sergeant
    Reputation
    26
    Join Date
    Aug 2010
    Posts
    127
    Thanks G/R
    3/4
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I don't suppose there's any chance of a release for the current PTR build?

  6. #1791
    Xelper's Avatar ★ Elder ★
    Reputation
    1024
    Join Date
    Mar 2007
    Posts
    860
    Thanks G/R
    0/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'll look into it. I would prefer to not have to update it for every patch, though. (Lots of updates, so little time) I was going to definitely do some updates for raid testing.

    I'm going to look into moving as much as possible over to patterns so it should be compatible with new patches, we will see.
    Last edited by Xelper; 09-29-2011 at 12:18 AM.

  7. #1792
    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.
    just so you know, here's what i've put together so far you may or may not notice that thing at the bottom

    Name: Stop Casting
    Spell ID: 0
    Delay: 0
    Target: Player
    LUA Code:
    Code:
    local unithealth = 100 * UnitHealth(targettoheal) / UnitHealthMax(targettoheal)
    local Spell, _, _, _, _, EndTime  = UnitCastingInfo("player")
    
    if unithealth > 95 then
    	if Spell == "Holy Light" or Spell == "Divine Light" or Spell == "Flash of Light" then
    		SpellStopCasting()
    		return true
    	end
    elseif unithealth > 80 then
    	if Spell == "Divine Light" or Spell == "Flash of Light" then
    		SpellStopCasting()
    		return true
    	end
    elseif unithealth < 30 then
    	if Spell == "Holy Light" then
    		EndTime = EndTime/1000 - GetTime()
    		if EndTime > 1 then
    			SpellStopCasting()
    			return true
    		end
    	end
    end
    
    if UnitBuff(targettoheal,"Divine Shield") or UnitBuff(targettoheal,"Deterrence") or UnitBuff(targettoheal,"Ice Block") or UnitDebuff(targettoheal,"Cyclone") then
    	SpellStopCasting()
    	return true
    end
    as soon as i finish a couple more things, i'll be releasing an ALMOST complete version on my profile

    *edit*
    Finished Hand of Protection and Salvation

    and after a headache and a half found my error in my beacon ability. my beacon ability will auto cast beacon on any target that already has beacon when there's 15 seconds left, if there is no target with beacon on them it will default back to you. Also adding in the ability to change beacon target quickly with holding left alt down and mousing over your desired beacon target.

    going to be adding a finishing touch and releasing tomorrow

    --------------------

    also ran into a snag with trying to find out who arena1-5 are targeting.... my brain turned off a LONG time ago
    Last edited by bu_ba_911; 09-29-2011 at 05:16 AM.
    ^0^Team Nova's PQR NCC ^0^

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

  8. #1793
    diesall's Avatar Contributor
    Reputation
    199
    Join Date
    Jul 2011
    Posts
    210
    Thanks G/R
    1/48
    Trade Feedback
    0 (0%)
    Mentioned
    1 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.
    you could extend your code if not rp capped to cast Chains of Ice (free rp, doesn't consume a rune just a gcd)

  9. #1794
    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
    you may or may not notice that thing at the bottom
    !

    Originally Posted by diesall
    you could extend your code if not rp capped to cast Chains of Ice (free rp, doesn't consume a rune just a gcd)
    Oh wow, that's brilliant. Which immunities does this work for? I have something like that written into my ability to handle Cloak of Shadows, but I guess I didn't realize that there were more possibilities.

  10. #1795
    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)
    ^0^Team Nova's PQR NCC ^0^

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

  11. #1796
    Xelper's Avatar ★ Elder ★
    Reputation
    1024
    Join Date
    Mar 2007
    Posts
    860
    Thanks G/R
    0/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Probably going to do something like this to allow this to be updated for PTR versions:

    Offsets.xml
    Code:
    <?xml version="1.0" encoding="UTF-8"?>
    <Offsets>
        <CurrentWoWVersion>15454</CurrentWoWVersion>
        <WoWVersionOffset>0xA75AF4</WoWVersionOffset>
        <PlayerName>0x980598</PlayerName>
        <GameState>0xA98C66</GameState>
        <isLoadingOrConnecting>0xA7D290</isLoadingOrConnecting>
        <GetCurrentKeyBoardFocus>0x995764</GetCurrentKeyBoardFocus>
        <ClntObjMgrGetActivePlayerObjAddress>0x3410</ClntObjMgrGetActivePlayerObjAddress>
        <Lua_DoStringAddress>0x426870</Lua_DoStringAddress>
        <Lua_GetLocalizedTextAddress>0x1B2140</Lua_GetLocalizedTextAddress>
        <ObjectManager_ClientConnection>0x980558</ObjectManager_ClientConnection>
        <ObjectManager_ObjectManager>0x463C</ObjectManager_ObjectManager>
        <ObjectManager_FirstObject>0xB4</ObjectManager_FirstObject>
        <ObjectManager_NextObject>0x3C</ObjectManager_NextObject>
        <ObjectManager_LocalGUID>0xB8</ObjectManager_LocalGUID>
        <PlayerNameStore_Ptr>0x959EE8</PlayerNameStore_Ptr>
        <PlayerNameStore_MaskOffset>0x024</PlayerNameStore_MaskOffset>
        <PlayerNameStore_BaseOffset>0x01C</PlayerNameStore_BaseOffset>
        <PlayerNameStore_StringOffset>0x020</PlayerNameStore_StringOffset>
    </Offsets>

  12. #1797
    Unasrage's Avatar Member
    Reputation
    6
    Join Date
    Oct 2009
    Posts
    55
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bu_ba_911 View Post
    OMG OMG OMG you totaly nailed it !!!!!

    i cant +rep you anymore but keep up the amazing work m8 !!!

    Again.. OMG..just..OMG!

  13. #1798
    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 Unasrage View Post
    OMG OMG OMG you totaly nailed it !!!!!

    i cant +rep you anymore but keep up the amazing work m8 !!!

    Again.. OMG..just..OMG!
    lol what changed that you were waiting for?
    ^0^Team Nova's PQR NCC ^0^

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

  14. #1799
    Unasrage's Avatar Member
    Reputation
    6
    Join Date
    Oct 2009
    Posts
    55
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bu_ba_911 View Post
    lol what changed that you were waiting for?
    Targeting is alot faster and the "auto"/cast on MS Beacon are just amazing!

    cant tk u enouf...

    ps.: cant wait for Xelper to upgread PQR so that check LoS.. them this profile and Sheurons holy priest will be 100% perfect!

    ---------edit -------------

    having a small bug: Becon keeps casting om me after casting on target it recasts it on me
    Last edited by Unasrage; 09-29-2011 at 03:33 PM.

  15. #1800
    grayyman's Avatar Corporal
    Reputation
    4
    Join Date
    Sep 2011
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Unasrage View Post
    having a small bug: Becon keeps casting om me after casting on target it recasts it on me
    likewise, for pve.

    ---------- Post added at 05:37 PM ---------- Previous post was at 05:07 PM ----------

    Originally Posted by grayyman View Post
    likewise, for pve.
    nvm
    Last edited by grayyman; 09-29-2011 at 04:45 PM.

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