SPQR - The passive DPS rotation menu

User Tag List

Page 34 of 39 FirstFirst ... 303132333435363738 ... LastLast
Results 496 to 510 of 585
  1. #496
    Hobot88's Avatar Member
    Reputation
    1
    Join Date
    May 2014
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi. Will work on a pirate server? Or only on the official server?

    SPQR - The passive DPS rotation
  2. #497
    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 Hobot88 View Post
    Hi. Will work on a pirate server? Or only on the official server?
    Only live servers.
    Anthraxbot & SPQR Creator / Administrator

  3. #498
    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 samu2104 View Post
    does anyone has made a good feral druid profile yet for this great addon
    There are Koha's druid profiles, how ever theyre nowhere near great due SPQR missing some critical functions to take good advantage of feral druids abilites.
    Ones like dot strenght tracking are really important for feral druid profiles due dot snapshotting mechanics of ferals.

  4. #499
    Joebert88's Avatar Corporal
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    21
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can someone tell me how exactly this PSQR works, Basically do I add the spells to my toolbar that are in the script?

  5. #500
    exec85's Avatar Member
    Reputation
    3
    Join Date
    Mar 2009
    Posts
    43
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I anyone able to to do a profil for Destruction Warlock? I have no experience in scripting

  6. #501
    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)
    Originally Posted by exec85 View Post
    I anyone able to to do a profil for Destruction Warlock? I have no experience in scripting
    Hi Exec85, here is my very basic rotation script, there is no chaos bolt as I like to cast them myself. It gets me through LFR. I hope it helps: (check other posts/replies from me for other basic scripts)

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

    namespace SPQR.Engine
    {
    class Warlock : Engine.FightModule
    {
    public override string DisplayName
    {
    get { return "Warlock"; } //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

    Imm = 172,
    Conflagrate = 17962,
    Incinerate = 686,
    Curse = 1490,

    }
    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

    Immo = 348,
    Curse = 1490,
    }

    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 (!TARGET.HasAurabyId((int)Auras.Curse))
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Curse);

    if (!TARGET.HasAurabyId((int)Auras.Immo))
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Imm);

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

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


    }

    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
    {

    }
    }
    }

  7. #502
    exec85's Avatar Member
    Reputation
    3
    Join Date
    Mar 2009
    Posts
    43
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    TY! I will try this at home later.

    Edit: It does not show me my PID. How can I get it?
    Last edited by exec85; 05-14-2014 at 11:02 AM.

  8. #503
    shadowrules's Avatar Member
    Reputation
    1
    Join Date
    Jul 2013
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone with a good spriest rotation to try this out willing to play some bucks on paypal

  9. #504
    Magebot's Avatar Private
    Reputation
    1
    Join Date
    May 2014
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by wanted77 View Post
    Hi Magebot, here is my simple code for fire mage, its nothing fancy but it does the job. Hope it helps:

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

    namespace SPQR.Engine
    {
    class Mage : Engine.FightModule
    {
    public override string DisplayName
    {
    get { return "Burn"; }
    }

    internal enum Spells : int
    {

    FrostNova = 122,
    Counterspell = 2139,
    Combustion = 11129,
    IceBarrier = 11426,
    Bomb = 125430,
    Frostnova = 122,
    Blast = 2136,
    PyroBlast = 11366,
    Combo = 11129,
    Fireball = 133,
    Scorch = 2948,
    Time = 108978,
    Evo = 12051,
    }
    internal enum Auras : int
    {

    Energy = 116257,
    Pyro = 48108,
    HeatUp = 48107,
    Ignite = 12654,
    Pyroblast = 48108,
    IceBarrier = 11426,
    BombAura = 44457,

    }

    public override void CombatLogic() //begin rotation
    {
    var TARGET = MySPQR.Internals.ObjectManager.Target;
    var ME = MySPQR.Internals.ObjectManager.WoWLocalPlayer;

    if (!ME.HasAurabyId((int)Auras.Energy))
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Evo); //Evo for spell buff

    if (TARGET.IsCasting) /*Check if the target is casting to interup */
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Counterspell);

    if (TARGET.Position.Distance3DFromPlayer < 10)
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Frostnova); //Enemy close, freeze them

    if(!TARGET.HasAurabyId((int)Auras.BombAura))
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Bomb); //Bomb

    if (ME.HasAurabyId((int)Auras.HeatUp))
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Blast); //Heatup for a pyro

    if (ME.HasAurabyId((int)Auras.Pyro))
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Time); //Alter Time free pyro

    if (ME.HasAurabyId((int)Auras.Pyro))
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.PyroBlast); //Instant pyro

    if (TARGET.HasAurabyId((int)Auras.Ignite))
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Combo); //Combustion on ignite dot

    if (!ME.HasAurabyId((int)Auras.IceBarrier))
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.IceBarrier); //Shield

    //MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Scorch); //PVP

    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Fireball); //PVE











    }



    public override void OnLoad()
    {


    }

    public override void OnClose()
    {



    }

    public override void OnStart()
    {

    }

    public override void OnStop()
    {

    }
    }
    }
    Thank you. I tried it out on the wooden dummies, it's ok, but doesnt seem to activate Alter time (after Pyro?).

  10. #505
    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)
    Hmmm strange, it works for me. You do have alter time on your action bar?
    It casts it when you have the free pyro proc, then if u dont cast it yourself afterwards, it waits for it to tick away itself before you go back to your "altered state".
    Like i say my scripts are very basic ones, just to get thru LFR. Oh and my fire mage has high crit chance too.

    regards

  11. #506
    exec85's Avatar Member
    Reputation
    3
    Join Date
    Mar 2009
    Posts
    43
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hmmm one question. sorry but how can i get the code above into the programm? is therer an import function? yesterday I could not use as and test as I now know that i have to start wow in x86 mode
    Last edited by exec85; 05-15-2014 at 04:23 AM.

  12. #507
    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)
    Originally Posted by exec85 View Post
    hmmm one question. sorry but how can i get the code above into the programm? is therer an import function? yesterday I could not use as and test as I now know that i have to start wow in x86 mode
    Hi exec85, there is a folder custom class, and inside here you will find all the classes. I copy the original ones, then write new ones. If you want to use my simple warlock or mage class, just copy and paste the code into the warlock.cs or mage.cs file (overwritting of course the original code).
    Then launch SPQR, choose your wow id, then select the warlock or mage from the drop down list, hit ctrl+x and bingo!

    regards

  13. #508
    fish221171's Avatar Member
    Reputation
    9
    Join Date
    Mar 2010
    Posts
    76
    Thanks G/R
    1/5
    Trade Feedback
    4 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Nonowmana,

    Any chance we can get targeting the ground added to SPQR so we can put down things like Death & Decay for DK's automatically when more than x amount of mobs are attacking us?

  14. #509
    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)
    SPQR still doesn't support pet ?
    Last edited by manylol; 05-18-2014 at 02:52 PM.

  15. #510
    clashfox's Avatar Member
    Reputation
    4
    Join Date
    Oct 2012
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Great looking program! I checked the wiki but it only has a ele shaman profile. Does anyone have a good enhance profile? Many thanks and keep up the great work coders!

Page 34 of 39 FirstFirst ... 303132333435363738 ... 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