SPQR - The passive DPS rotation menu

Shout-Out

User Tag List

Page 20 of 39 FirstFirst ... 161718192021222324 ... LastLast
Results 286 to 300 of 585
  1. #286
    Dirrrty's Avatar Active Member

    Reputation
    65
    Join Date
    Jun 2013
    Posts
    121
    Thanks G/R
    5/4
    Trade Feedback
    8 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks, works quite well, tested a few classes DPS is still very low though, I'm guessing there is a way to modify settings and add more abilities.
    Last edited by Dirrrty; 04-17-2014 at 08:41 AM. Reason: forgot to say thanks!!

    SPQR - The passive DPS rotation
  2. #287
    Kinky's Avatar Banned CoreCoins Purchaser
    Reputation
    481
    Join Date
    Nov 2008
    Posts
    500
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Dirrrty View Post
    Thanks, works quite well, tested a few classes DPS is still very low though, I'm guessing there is a way to modify settings and add more abilities.
    It's still in development, which in return means there's no complete rotations right now because it's simply not possible with a few things still under development.

  3. #288
    Dirrrty's Avatar Active Member

    Reputation
    65
    Join Date
    Jun 2013
    Posts
    121
    Thanks G/R
    5/4
    Trade Feedback
    8 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    works very well though, so will be keeping an eye on it

  4. #289
    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 Dirrrty View Post
    works very well though, so will be keeping an eye on it
    You can edit the files on the CustomClass folder, this is the combat rotations Documentation : SPQR - Passive Rotation Bot
    Anthraxbot & SPQR Creator / Administrator

  5. #290
    rail3r85's Avatar Member
    Reputation
    2
    Join Date
    Jan 2014
    Posts
    30
    Thanks G/R
    0/1
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Nonowmana View Post
    Use the debug window to get the correct id's, and find what is the bar used, slot used. If SPQR do not launch your id, it must be some really exotic KeyBinding.
    Use the WIKi to find what you need

    MySPQR.Classes.WoWAura - SPQR - Passive Rotation Bot
    I tested with stock keybindings, it still doesnt work, spell is in bar1 slot1 keybind number 1.
    No different with or without elvui.
    Id's are correct in the rotation.

  6. #291
    Phelios's Avatar Active Member
    Reputation
    17
    Join Date
    Dec 2012
    Posts
    65
    Thanks G/R
    0/6
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Need enhanced shaman profile

  7. #292
    Contortus's Avatar Private
    Reputation
    1
    Join Date
    Apr 2014
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi Nonowmana,

    First of all thanks for the time you invested in creating this SPQR program. I have been testing it out and signed up to this forum to provide you some feedback.

    Unfortunately it seems that the Combopoint detection is still not working (using version 1.0.5217.96). I created the template at the end of my message for my combat rogue and in theory it should execute an eviscerate once it reaches 5 or more CP. In reality it either never fires off Eviscerate or does so after every single CP. I have tried tying my Eviscerates to other conditions as a test (e.g. fire eviscerates only once SnD has less than 15 seconds) and there it works fine. In fact everything but the CP condition works fine.

    I might have done something wrong with the code, but I am pretty sure I copied previous examples. Anyway here it is:



    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using SPQR;
    using MySPQR;

    namespace SPQR.Engine
    {
    class Rogue : Engine.FightModule
    {
    public override string DisplayName
    {
    get { return "Combat_Rogue"; } //This is the name displayed in SPQR's Class selection DropdownList
    }

    internal enum Spells : int //This is a convenient list of all spells used by our combat routine
    { //you can have search on wowhead.com for spell name, and get the id in url
    SinisterStrike = 1752,
    Hemorrhage = 16511,
    RevealingStrike = 84617,
    Mutilate = 1329,
    Eviscerate = 2098,
    KidneyShot = 408,
    Envenom = 32645,
    CombatReadiness = 74001,
    Vendetta = 79140,
    Rupture=1943,
    Shadowblades=121471,
    Backstab=53,
    Dispatch=111240,
    SnD=5171,
    }

    internal enum Auras : int //This is another convenient list of Auras used in our combat routine
    { //you can have those in wowhead.com (again) and get the id in url
    RevealingStrike = 84617,
    Blindside=121152,
    Stealth=1784,
    Rupture=1943,
    SnD=5171,
    CP=34071,
    Anticipation=114015,
    }

    public override void CombatLogic() //This is the DPS / healing coutine, called in loop by SPQR all code here is executed
    {
    var TARGET = MySPQR.Internals.ObjectManager.Target;
    var ME = MySPQR.Internals.ObjectManager.WoWLocalPlayer;


    if (ME.HasAurabyId(1784))
    {
    MySPQR.Internals.ActionBar.CastSpellById(8676);

    }

    if (ME.ComboPoints > 4)
    {

    MySPQR.Internals.ActionBar.CastSpellById(2098 );

    }

    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.SinisterStrike);

    if(!TARGET.HasAurabyId((int)Auras.RevealingStrike))
    {
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.RevealingStrike);
    }
    if (ME.GetAuraById(5171).TimeLeft < 2)
    {
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.SnD);
    }
    public override void OnLoad() //This is called when the Customclass is loaded in SPQR
    {

    }

    public override void OnClose() //This is called when the Customclass is unloaded in SPQR
    {

    }

    public override void OnStart() //This is called once, when you hit CTRL+X to start SPQR combat routine
    {

    }

    public override void OnStop() //This is called once, when you hit CTRL+X to stop SPQR combat routine
    {

    }
    }
    }
    Last edited by Contortus; 04-17-2014 at 04:36 PM.

  8. #293
    nertharul's Avatar Member
    Reputation
    3
    Join Date
    Apr 2010
    Posts
    72
    Thanks G/R
    1/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Excuse me can someone help me plz, i'm trying to add Storm Bolt, Synapse springs and Blood Fury to the warrior rotation but they are not working.

  9. #294
    Dirrrty's Avatar Active Member

    Reputation
    65
    Join Date
    Jun 2013
    Posts
    121
    Thanks G/R
    5/4
    Trade Feedback
    8 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Still low dps, but I love this, great for slackers :P +rep

  10. #295
    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 Dirrrty View Post
    Still low dps, but I love this, great for slackers :P +rep
    You are doing it wrong then, i constantly get 130k-150k on a 521 ilvl hunter.

  11. #296
    Aroia's Avatar Sergeant
    Reputation
    7
    Join Date
    Nov 2012
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello Noonowmana,

    great effort you put in here.
    Just trying to write some profiles, looking good so far. Can you help me with this function, as i couldnt find any function like this one in the other class profiles.
    -
    I need an if function that checks out the stacks on a given aura ( in this case 114851) and if this stacks is >10 i want to do a spell.

    How can i do thisone?

    Thanks mate.

    EDIT: Still causing problems
    Last edited by Aroia; 04-18-2014 at 10:46 PM.

  12. #297
    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 Aroia View Post
    Hello Noonowmana,

    great effort you put in here.
    Just trying to write some profiles, looking good so far. Can you help me with this function, as i couldnt find any function like this one in the other class profiles.
    -
    I need an if function that checks out the stacks on a given aura ( in this case 114851) and if this stacks is >10 i want to do a spell.

    How can i do thisone?

    Thanks mate.

    EDIT: Still causing problems
    You should check other rotation classes, ie the one i did for hunter:

    https://ramakandra-emporium.googleco...PQR-Rotations/

    Code:
                    public static bool CheckMyAuraStacks( int spellID,int stacks)
                    {
                            var ME = MySPQR.Internals.ObjectManager.WoWLocalPlayer;
                            foreach (var aura in ME.AuraList)
                            {
                                    if( (aura.Id==spellID) &&  (int)aura.StackCount==(int)stacks)
                                            return true;
                            }
                            return false;
                    }

  13. #298
    wanted77's Avatar Member
    Reputation
    2
    Join Date
    Jan 2013
    Posts
    60
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi all, I wanted to give this a quick test, but when i try to play/launch it (with ctrl+x) my Norton security shouts at me and removes it from my pc!

    Threat name = SONAR.Heuristic.120

  14. #299
    Aroia's Avatar Sergeant
    Reputation
    7
    Join Date
    Nov 2012
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bruj0 View Post
    You should check other rotation classes, ie the one i did for hunter:

    https://ramakandra-emporium.googleco...PQR-Rotations/

    Code:
                    public static bool CheckMyAuraStacks( int spellID,int stacks)
                    {
                            var ME = MySPQR.Internals.ObjectManager.WoWLocalPlayer;
                            foreach (var aura in ME.AuraList)
                            {
                                    if( (aura.Id==spellID) &&  (int)aura.StackCount==(int)stacks)
                                            return true;
                            }
                            return false;
                    }
    Tried that one, didnt worked for me, but solved it now in this way:

    if (MySPQR.Internals.ObjectManager.WoWLocalPlayer.GetAuraById(114851).StackCount >= 10 && ME.RunicPower > 76)
    MySPQR.Internals.ActionBar.GetSlotById((int)Spells.BloodTap).Execute();

    Thanks anyway!

  15. #300
    Aroia's Avatar Sergeant
    Reputation
    7
    Join Date
    Nov 2012
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by nertharul View Post
    Excuse me can someone help me plz, i'm trying to add Storm Bolt, Synapse springs and Blood Fury to the warrior rotation but they are not working.
    Please PM me the rotation you have and i will implemend that for you. Blood Fury for example you can simply put in by:

    MySPQR.Internals.ActionBar.GetSlotById((int)Spells.BloodFury).Execute();

    But you also need to add the spell to the spell list and make sure you have it on a actionb bar. Contact me for more help if you need it.

Page 20 of 39 FirstFirst ... 161718192021222324 ... 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 12:10 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