SPQR - The passive DPS rotation menu

User Tag List

Page 16 of 39 FirstFirst ... 121314151617181920 ... LastLast
Results 226 to 240 of 585
  1. #226
    soheil55's Avatar Corporal
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    20
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i tested the paladin retri profile everything works great but something wrong is there when you click on the target your hero will run automaticly and face behinde the target this is really bad mid the raid fight or hc raid you cant control your hero probably and it cause the wipe definitely so please fix this and put the aoe rotation also thank you

    SPQR - The passive DPS rotation
  2. #227
    bruj0's Avatar Member
    Reputation
    2
    Join Date
    Jul 2009
    Posts
    69
    Thanks G/R
    2/0
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    My first 2 rotations for Hunter, Beastmaster and Survival, doing aprox 150-130k dps on a ilvl 526 hunter.

    https://ramakandra-emporium.googlecode.com/svn/trunk/

    Next im doing Shaman Elemental.

  3. #228
    Nonowmana's Avatar Contributor
    Reputation
    125
    Join Date
    Apr 2009
    Posts
    259
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Koha View Post
    been trying to write a feral profile and same i can get thrash to work and rake, but combo point detection and mangle will not fire even though i've tried ever mangle spell id.

    And with the new update is it supposed to be constantly moving the screen trying to face the target? if so its kind of annoying due to the fact i'm constantly moving my mouse to see mobs around me.
    This will be optionnal on the next release


    Originally Posted by bruj0 View Post
    My first 2 rotations for Hunter, Beastmaster and Survival, doing aprox 150-130k dps on a ilvl 526 hunter.

    https://ramakandra-emporium.googlecode.com/svn/trunk/

    Next im doing Shaman Elemental.

    nice to share You should post it on the WIKI http://wiki.mmoglider.fr

    Edit : In next version, will be added : Demonic Fury support for Warlocks.
    Last edited by Nonowmana; 04-09-2014 at 06:01 AM.
    Anthraxbot & SPQR Creator / Administrator

  4. #229
    manylol's Avatar Sergeant
    Reputation
    8
    Join Date
    Apr 2014
    Posts
    37
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hey, does the auto interrupt works for Warlock ? Is it possible to disable everything except auto interrupt ? thank you

  5. #230
    Nonowmana's Avatar Contributor
    Reputation
    125
    Join Date
    Apr 2009
    Posts
    259
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by manylol View Post
    hey, does the auto interrupt works for Warlock ? Is it possible to disable everything except auto interrupt ? thank you
    You mean Felhoud, or anything to interupt target casting ?

    If you do, yes, it can detect casting, and interrupt.
    Anthraxbot & SPQR Creator / Administrator

  6. #231
    samu2104's Avatar Member
    Reputation
    1
    Join Date
    May 2008
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    does it work with bar addons aswell or just the normal plain ones from blizz it self

  7. #232
    Nonowmana's Avatar Contributor
    Reputation
    125
    Join Date
    Apr 2009
    Posts
    259
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by samu2104 View Post
    does it work with bar addons aswell or just the normal plain ones from blizz it self
    It have been reported to work with bar addons, however I did not test by myself.
    Anthraxbot & SPQR Creator / Administrator

  8. #233
    lockslash's Avatar Member
    Reputation
    3
    Join Date
    Sep 2012
    Posts
    42
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi Nonowmana,

    can you explain me how to use

    MySPQR.Classes.WoWAura.IsMine

    in combat logic?

    Thnkss

  9. #234
    bruj0's Avatar Member
    Reputation
    2
    Join Date
    Jul 2009
    Posts
    69
    Thanks G/R
    2/0
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by lockslash View Post
    Hi Nonowmana,

    can you explain me how to use

    MySPQR.Classes.WoWAura.IsMine

    in combat logic?

    Thnkss
    Here is what i did:


    Code:
    		
    public static bool HasMyDebuff(int spellID)
    {
    	var TARGET = MySPQR.Internals.ObjectManager.Target;
    	foreach (var aura in TARGET.AuraList)
            {
     	if( (aura.Id==spellID) &&  aura.IsMine==true)
    		return true;
             }
    	 return false;
    }

  10. #235
    nrgd's Avatar Corporal
    Reputation
    1
    Join Date
    Mar 2014
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Nonowmana View Post
    Auras are a bit tricky to detect out of process, I have all aura working on my side, on all my characters, will check what might be wrong in my code thanks to your report. What level are you ?

    The working thread exit, randomly, will test it on my Paladin to see what appens.
    I'm a lvl 90 paladin... rotation should be slightly different when avenging wrath is active, so it would be great to detect this aura.

  11. #236
    lockslash's Avatar Member
    Reputation
    3
    Join Date
    Sep 2012
    Posts
    42
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bruj0 View Post
    Here is what i did:


    Code:
    		
    public static bool HasMyDebuff(int spellID)
    {
    	var TARGET = MySPQR.Internals.ObjectManager.Target;
    	foreach (var aura in TARGET.AuraList)
            {
     	if( (aura.Id==spellID) &&  aura.IsMine==true)
    		return true;
             }
    	 return false;
    }
    Nonowmana please add this new classe in the new revision XD

    If I understand you... I think we can use:

    if(!TARGET.HasMyDebuff((int)Auras.Agony))
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Agony);

    right?
    Last edited by lockslash; 04-09-2014 at 04:46 PM.

  12. #237
    Yezea's Avatar Member
    Reputation
    2
    Join Date
    Jun 2013
    Posts
    19
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Btw there is a ( missing in front of aura.IsMine==true.

  13. #238
    lockslash's Avatar Member
    Reputation
    3
    Join Date
    Sep 2012
    Posts
    42
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Yezea View Post
    Btw there is a ( missing in front of aura.IsMine==true.
    mmmmm

    really not...

  14. #239
    Nonowmana's Avatar Contributor
    Reputation
    125
    Join Date
    Apr 2009
    Posts
    259
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Might add this for next version
    I also adding Aura.Timeleft, checking so structure

    here is a more "Accurate" code
    Code:
    public static bool HasMyDebuff(int spellID)
    {
    	var TARGET = MySPQR.Internals.ObjectManager.Target;
    	foreach (var aura in TARGET.AuraList)
            {
     	if( (aura.Id == spellID) &&  aura.IsMine) // no need to make the == true as IsMine return a bool ;)
    		return true;
             }
    	 return false;
    }
    Anthraxbot & SPQR Creator / Administrator

  15. #240
    bruj0's Avatar Member
    Reputation
    2
    Join Date
    Jul 2009
    Posts
    69
    Thanks G/R
    2/0
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Btw i dont know if its a bug but:

    When AuraList.<aura>.StackCount==805329413 it means StackCount==5

Page 16 of 39 FirstFirst ... 121314151617181920 ... LastLast

Similar Threads

  1. WOW Macro Library (DPS Rotations, Healing, Tanking, etc)
    By Viral Fly-by in forum WoW UI, Macros and Talent Specs
    Replies: 463
    Last Post: 07-05-2014, 09:31 AM
  2. DPSCycle - DPS Rotation helper addon
    By Vasar in forum WoW UI, Macros and Talent Specs
    Replies: 5
    Last Post: 11-07-2009, 06:23 PM
  3. [Guide] DPS Rotation for ALL CLASSES!
    By [AfterBurner] in forum World of Warcraft Guides
    Replies: 46
    Last Post: 10-23-2009, 04:45 AM
  4. DK dps rotation macro(blood/unholy)
    By Shakenbaken2 in forum WoW UI, Macros and Talent Specs
    Replies: 7
    Last Post: 08-05-2009, 11:10 AM
  5. Whats the best dps class?
    By Fragz1lla in forum World of Warcraft General
    Replies: 5
    Last Post: 01-28-2009, 06:43 PM
All times are GMT -5. The time now is 03:13 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