SPQR - The passive DPS rotation menu

Shout-Out

User Tag List

Page 27 of 39 FirstFirst ... 232425262728293031 ... LastLast
Results 391 to 405 of 585
  1. #391
    xmajoh's Avatar Private
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Koha View Post
    Don't think u can track lunar and solar states yet.
    Actually you can.
    Code:
    internal enum Spells : int
    {                                               
    Wrath = 5176,
    Starfire = 2912,
    }
    internal enum Auras : int
    {
    EclipseSolar = 48517,
    EclipseLunar = 48518,
    }
    		
    private string eclipse = "";
    public override void CombatLogic() {
    var TARGET = MySPQR.Internals.ObjectManager.Target;
    var ME = MySPQR.Internals.ObjectManager.WoWLocalPlayer;
    if(ME.HasAurabyId((int)Auras.EclipseSolar))
    {eclipse = "solar";}
    else if(ME.HasAurabyId((int)Auras.EclipseLunar)){eclipse = "lunar";}
    if(eclipse == "solar")
    {
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Wrath);
    }
    else if(eclipse == "lunar")
    {
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Starfire);
    }
    else if(eclipse != "lunar" && eclipse != "solar")
    {
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Starfire);
    }
    }

    SPQR - The passive DPS rotation
  2. #392
    hessels92's Avatar Private
    Reputation
    1
    Join Date
    Apr 2014
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    xmajoh

    want to make me a balance druid script??

    Would be awesome

  3. #393
    xmajoh's Avatar Private
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by hessels92 View Post
    xmajoh

    want to make me a balance druid script??

    Would be awesome
    I am working on a script for balance druid and will post it when i am done.

  4. #394
    hessels92's Avatar Private
    Reputation
    1
    Join Date
    Apr 2014
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Awesome give me a heads up if you need anything. Testing or what not

  5. #395
    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 xmajoh View Post
    Actually you can.
    Code:
    internal enum Spells : int
    {                                               
    Wrath = 5176,
    Starfire = 2912,
    }
    internal enum Auras : int
    {
    EclipseSolar = 48517,
    EclipseLunar = 48518,
    }
    
    private string eclipse = "";
    public override void CombatLogic() {
    var TARGET = MySPQR.Internals.ObjectManager.Target;
    var ME = MySPQR.Internals.ObjectManager.WoWLocalPlayer;
    if(ME.HasAurabyId((int)Auras.EclipseSolar))
    {eclipse = "solar";}
    else if(ME.HasAurabyId((int)Auras.EclipseLunar)){eclipse = "lunar";}
    if(eclipse == "solar")
    {
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Wrath);
    }
    else if(eclipse == "lunar")
    {
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Starfire);
    }
    else if(eclipse != "lunar" && eclipse != "solar")
    {
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Starfire);
    }
    }
    I stand corrected.

    Sent from my GT-N7105 using Tapatalk

  6. #396
    Kuri's Avatar Member
    Reputation
    6
    Join Date
    Aug 2006
    Posts
    196
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    interesting project, thanx for ur work, tried on bdk and it was working good, gonna try to make some basic on my own for demo lock or maybe other spec which should be easier

    just a lil tip, if is possible can u add current char name at pid process

    not necessary but it makes thing a little easier

    /salute with respect to ur work
    Last edited by Kuri; 04-28-2014 at 09:04 PM.
    ***--***--/////**\\\\\--***--***

  7. #397
    Deathsmind's Avatar Member
    Reputation
    2
    Join Date
    Oct 2012
    Posts
    100
    Thanks G/R
    0/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So how is SPQR? I stopped playing when PQR was hit.

    Is there any bans yet?
    Are the profiles out there for this any good yet?

  8. #398
    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 Deathsmind View Post
    So how is SPQR? I stopped playing when PQR was hit.

    Is there any bans yet?
    Are the profiles out there for this any good yet?
    No bans, and chances are very slim as it's passive so no injection just reading the memory. And profiles u can check out the front page the wiki Page has some or the profiles section of ownedcore under the total spqr

    Sent from my GT-N7105 using Tapatalk

  9. #399
    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 hessels92 View Post
    Awesome give me a heads up if you need anything. Testing or what not
    Hi Hessels, here is my basic boomkin script (you manage your own starfall); And a big thanks to xmajoh.


    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 "Boom"; } //This is the name displayed in SPQR's Class selection DropdownList
    }


    internal enum Spells : int
    {
    Wrath = 5176,
    Starfire = 2912,
    Moonfire = 8921,
    Sunfire = 93402,
    Starsurge = 78674,
    }


    internal enum Auras : int
    {
    EclipseSolar = 48517,
    EclipseLunar = 48518,
    Moon = 8921,
    Sun = 93402,
    Shoot = 93400,
    }

    private string eclipse = "";
    public override void CombatLogic() {

    var TARGET = MySPQR.Internals.ObjectManager.Target;
    var ME = MySPQR.Internals.ObjectManager.WoWLocalPlayer;

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

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

    if(ME.HasAurabyId((int)Auras.Shoot))
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Starsurge);

    if(ME.HasAurabyId((int)Auras.EclipseSolar))
    {eclipse = "solar";}
    else if(ME.HasAurabyId((int)Auras.EclipseLunar)){eclipse = "lunar";}

    if(eclipse == "solar")
    {
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Wrath);
    }
    else if(eclipse == "lunar")
    {
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Starfire);
    }
    else if(eclipse != "lunar" && eclipse != "solar")
    {
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Starfire);
    }

    }



    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);
    }

  10. #400
    hessels92's Avatar Private
    Reputation
    1
    Join Date
    Apr 2014
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Awesome thanks a mill i shall test in a flex tomorrow

    Does it auto cast starsurge on proc?

  11. #401
    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)
    The new project *kinda* related to SPQR will be released in a few hours. This is not a SPQR update, but SPQR will take benefits of this new project.

    The "Anthrax" project used some logic of SPQR, but rewritten from scratch for optimizations, awesomeness, prevent kitten from boiling water...

    All the SPQR bugs (combo, missing API...) are fixed. the API change a bit due to the complexity of World of Warcraft Classes, but remain accessible (best effort was done to keep it understandable by normal users).

    Mouse is supported with World to Screen, in Background and still out of process (****Yeah ! method), so you can use it to click, cast AOE spells, everything (even navigate in the UI, subscribe to Battlegrounds...).

    Custom Classes are still available and warmly welcomed.

    This will be free of charge for one week, then it will in reduced price for one more week. All you need is to subscribe on the forums (the URL will be available soon, or try to find it) and use the credentials in Anthrax.

    The project was designed to be as secure as possible, totally Out Of Process, all exchanges between you and the server - website are encrypted by SSL 128bits with a real certificate...

    EDIT : https://www.anthraxbot.com
    Last edited by Nonowmana; 04-29-2014 at 09:26 AM.
    Anthraxbot & SPQR Creator / Administrator

  12. #402
    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 hessels92 View Post
    Awesome thanks a mill i shall test in a flex tomorrow

    Does it auto cast starsurge on proc?
    Yes it does. Let me know how you get on with it, I have been testing it on my resto geared druid, and its working fine with decent dps. So in proper dps gear it should be good, remember this is just basic lazy script, so do not expect to be topping meters.

    kind regards.

  13. #403
    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 Nonowmana View Post
    The new project *kinda* related to SPQR will be released in a few hours. This is not a SPQR update, but SPQR will take benefits of this new project.

    The "Anthrax" project used some logic of SPQR, but rewritten from scratch for optimizations, awesomeness, prevent kitten from boiling water...

    All the SPQR bugs (combo, missing API...) are fixed. the API change a bit due to the complexity of World of Warcraft Classes, but remain accessible (best effort was done to keep it understandable by normal users).

    Mouse is supported with World to Screen, in Background and still out of process (****Yeah ! method), so you can use it to click, cast AOE spells, everything (even navigate in the UI, subscribe to Battlegrounds...).

    Custom Classes are still available and warmly welcomed.

    This will be free of charge for one week, then it will in reduced price for one more week. All you need is to subscribe on the forums (the URL will be available soon, or try to find it) and use the credentials in Anthrax.

    The project was designed to be as secure as possible, totally Out Of Process, all exchanges between you and the server - website are encrypted by SSL 128bits with a real certificate...

    Stay tuned
    Thanks for the update Nono, just a silly question, does this now mean there are two programs? SPQR remains free and "simple" with issues/bugs. And then Anthrax is a new and different program that will run smooth, bug free and better functions, but with a small fee?
    Or will SPQR be removed and the new project becomes its replacement?

    regards

  14. #404
    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
    Thanks for the update Nono, just a silly question, does this now mean there are two programs? SPQR remains free and "simple" with issues/bugs. And then Anthrax is a new and different program that will run smooth, bug free and better functions, but with a small fee?
    Or will SPQR be removed and the new project becomes its replacement?

    regards
    There will be two programs, at least at the beginning, I do not plan to make SPQR a paid program, but registering on the forums will be mandatory.

    The forums and the website are available, release will follow shortly.

    ---> Website / Forums : https://www.anthraxbot.com
    Last edited by Nonowmana; 04-29-2014 at 09:13 AM.
    Anthraxbot & SPQR Creator / Administrator

  15. #405
    Feldeath's Avatar Member
    Reputation
    12
    Join Date
    Feb 2011
    Posts
    75
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If I understand correctly, Anthrax is a full on bot and SPQR is just a part of it (the DPs part).
    SPQR remains free but Anthrax is not.

    Is that correct?

Page 27 of 39 FirstFirst ... 232425262728293031 ... 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 06:01 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