SPQR - The passive DPS rotation menu

Shout-Out

User Tag List

Page 22 of 39 FirstFirst ... 181920212223242526 ... LastLast
Results 316 to 330 of 585
  1. #316
    Nov17's Avatar Sergeant Major CoreCoins Purchaser
    Reputation
    9
    Join Date
    Aug 2011
    Posts
    161
    Thanks G/R
    6/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Nonowmana View Post
    Only live servers are supported. Difficulty : triple work to maintain/develop it. This will not supported
    Can anyone be taught how to?

    The reason I am asking is that I will not play live until the next expansion. And I would like to test beta/ptr and having a rotation tool would be convenient.

    SPQR - The passive DPS rotation
  2. #317
    Koha's Avatar Member
    Reputation
    11
    Join Date
    Jun 2008
    Posts
    55
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by wanted77 View Post
    Is there anybody that could write a feral cat rotation file for me? I am currently using a very lazy one key macro in game which is fine for LFR, would love it to be SPQR'd

    Here is my one key wow macro: (no shred or anything, just faceroll key spam)
    #showtooltip
    /castsequence [stealth]reset=combat Ravage,Savage Roar,null
    /castsequence reset=target Rake,null
    /console autounshift 0
    /castsequence [@player] reset=0.3 0,0,Healing Touch
    /console autounshift 1
    /castsequence [combat,nostealth]reset=target Mangle,Rip,Rake,Mangle,Mangle,Savage Roar,Mangle,Mangle,Mangle,Faerie Fire
    /cast [combat,nostealth] Tiger's Fury
    /startattack [combat,nostealth]
    /targetenemy [noharm][dead]
    /run UIErrorsFrame:Clear()

    Many thanks in advance, I also have a warlock destro one key macro too, if the above is easy to do.
    I posted one a few pages back but the combo point detection isn't working properly still and through my testing it seems to be with the greater than and less that symbols.

    Sent from my GT-N7105 using Tapatalk

  3. #318
    Owneth's Avatar Active Member
    Reputation
    56
    Join Date
    Feb 2011
    Posts
    362
    Thanks G/R
    6/22
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Nonowmana View Post
    This may be caused by two factors :
    1. Packed exe with an obfuscator (MySPQR is my intellectual property, I do not want it to be readed by anyone)
    2. Antivirus do not like Memory manipulation library, they consider them as Generic.Inject or something, here is a Virustotal scan of the latest version :
    https://www.virustotal.com/fr/file/1...is/1395579997/

    also : New version, update your SPQR
    Wait if it injects with Generic.Inject... then it's not passive...

    WTF?

  4. #319
    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 Owneth View Post
    Wait if it injects with Generic.Inject... then it's not passive...

    WTF?
    Yes, you are right its not passive, please go away.

  5. #320
    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 Owneth View Post
    Wait if it injects with Generic.Inject... then it's not passive...

    WTF?
    The memory I use have the ability to write in memory, that doesn't mean I use it if you are paranoid, check the web, there is plenty of tools to check if a process write into another.

    Also, regarding combo points they have been fixed at last release, check it out and tell me
    Anthraxbot & SPQR Creator / Administrator

  6. #321
    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 Koha View Post
    I posted one a few pages back but the combo point detection isn't working properly still and through my testing it seems to be with the greater than and less that symbols.

    Sent from my GT-N7105 using Tapatalk
    Thanks Koha, so here is my very simple (no shred, faceroll code) kitty file:

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

    namespace SPQR.Engine
    {
    class Druid : Engine.FightModule
    {
    public override string DisplayName
    {
    get { return "Kitty"; } //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
    Mangle = 33917,
    Rip = 1079,
    Rake = 1822,
    SavageRoar = 52610,
    HealingTouch = 5185,
    TigerFury = 5217,
    }
    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
    Rip = 1079,
    PredSwiftness = 69369,
    Rake = 1822,
    SavageRoar = 52610,
    }

    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.Rake) //will also return true for others people debuff
    || !HasMyDebuff((int)Auras.Rake) //only checks for own
    )
    CastSpellById((int)Spells.Rake);


    CastSpellById((int)Spells.Mangle);


    if((ME.ComboPoints > 4) &&!TARGET.HasAurabyId((int)Auras.Rip) )
    CastSpellById((int)Spells.Rip);

    if(ME.Energy < 30)
    CastSpellById((int)Spells.TigerFury);

    if(ME.HasAurabyId((int)Auras.PredSwiftness))
    CastSpellById((int)Spells.HealingTouch);

    if(!ME.HasAurabyId((int)Auras.SavageRoar))
    CastSpellById((int)Spells.SavageRoar);



    }

    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;
    }
    public static void CastSpellById(int spellId) //This is a *usermade* function to evaluate if the given spell (spellId) can be cast
    {
    MySPQR.Internals.ActionBar.CastSpellById(spellId);
    }

    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
    {
    SPQR.Logger.WriteLine("Starting .......................................\n");
    }

    public override void OnStop() //This is called once, when you hit CTRL+X to stop SPQR combat routine
    {
    SPQR.Logger.WriteLine("Stoping .......................................\n");
    }
    }
    }

  7. #322
    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)
    After my simple feral cat file, I am now trying to write a simple warlock destro file.
    However, the code is only casting curse of the elements and conflagrate. Seems to ignore Immolate and Incinerate...??? any ideas? I think i am using the correct spell id's...

    *just tried in debug mode* even the spellbook is NOT showing Immolate or Incinerate in the list, even though there are on the action bars. Very strange.
    I checked the immolate id and it is indeed 348, any help?


    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

    ShadowBurn = 17877,
    Immolate = 348,
    Conflagrate = 17962,
    Incinerate = 29722,
    Curseoftheelements = 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

    Immolate = 348,
    Curseoftheelements = 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.Curseoftheelements))
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Curseoftheelements);

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

    if(TARGET.HealthPercent < 20 )
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.ShadowBurn);

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

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


    }
    Last edited by wanted77; 04-21-2014 at 05:23 AM. Reason: Checked Debug mode

  8. #323
    schmiddi's Avatar Member
    Reputation
    1
    Join Date
    Mar 2008
    Posts
    38
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah, 50 ppl visited my dw frost dk profile on github. Do they use it?

    Here is an small fix for theBlood Plague spell id:

    https://github.com/schmiddikiel/schmiddi

    =)

  9. #324
    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 schmiddi View Post
    Yeah, 50 ppl visited my dw frost dk profile on github. Do they use it?

    Here is an small fix for theBlood Plague spell id:

    https://github.com/schmiddikiel/schmiddi

    =)
    Some guys use it, but nobody talk about something only if something do not work ^^
    Anthraxbot & SPQR Creator / Administrator

  10. #325
    schmiddi's Avatar Member
    Reputation
    1
    Join Date
    Mar 2008
    Posts
    38
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hmmm^^ no one noticed the wrong id:P

  11. #326
    jonasmohammed93's Avatar Member
    Reputation
    8
    Join Date
    Jun 2013
    Posts
    54
    Thanks G/R
    2/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So what's the purpose of this? Just lazy people looking to make the game even easier?

  12. #327
    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)
    Originally Posted by schmiddi View Post
    Yeah, 50 ppl visited my dw frost dk profile on github. Do they use it?

    Here is an small fix for theBlood Plague spell id:

    https://github.com/schmiddikiel/schmiddi

    =)
    Thanks for this, I will test and come back to you. Just quickly looking at the code, just a quick question does this put down D&D. Not sure if SPQR can detect how many mobs are around the player?

  13. #328
    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 fish221171 View Post
    Thanks for this, I will test and come back to you. Just quickly looking at the code, just a quick question does this put down D&D. Not sure if SPQR can detect how many mobs are around the player?
    It does check the API on the wiki MySPQR.Classes.WoWLocalPlayer - SPQR - Passive Rotation Bot
    Anthraxbot & SPQR Creator / Administrator

  14. #329
    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 Nonowmana, any clue about my immolate and incinerate cast problems?
    Thanks in advance...

  15. #330
    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 wanted77 View Post
    Hi Nonowmana, any clue about my immolate and incinerate cast problems?
    Thanks in advance...

    I think your id is wrong, check with the debug window all ids on the target when you cast immolate, and compare.
    Anthraxbot & SPQR Creator / Administrator

Page 22 of 39 FirstFirst ... 181920212223242526 ... 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 07:23 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