Jump to content

How to create an Fight Class (developer only)


Recommended Posts

How to create an Fight Class (developer only)



Fight class using bot API. He is recommanded to use visual studio 12 with framework 4.5 for create an Fight class (add in reference robotManager.dll and wManager.dll).


WRobot supporting C#, Vb.net code, and dll.

Sample C# Fight Class for Hunter: (Finite State Machine (Engine)) ( http://pastebin.com/ywQ2VPGr )

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Configuration;
  5. using System.IO;
  6. using System.Linq;
  7. using System.Threading;
  8. using robotManager;
  9. using robotManager.FiniteStateMachine;
  10. using robotManager.Helpful;
  11. using wManager.Wow.Class;
  12. using wManager.Wow.Helpers;
  13. using wManager.Wow.ObjectManager;
  14. using Timer = robotManager.Helpful.Timer;
  15.  
  16. public class Main : ICustomClass
  17. {
  18. public float Range { get { return 36; } }
  19.  
  20. private Engine _engine;
  21. public void Initialize()
  22. {
  23. HunterSettings.Load();
  24. _engine = new Engine(false)
  25. {
  26. States = new List<State>
  27. {
  28. // Pet
  29. new PetManager { Priority = 20 },
  30. // Defensive
  31. new SpellState("Freezing Trap", 13,
  32. context => (ObjectManager.GetUnitAttackPlayer().Count(u => u.GetDistance <= 8) >= 1 && ObjectManager.GetUnitAttackPlayer().Count > 1)),
  33. new SpellState("Disengage", 21,
  34. context => (ObjectManager.GetUnitAttackPlayer().Count(u => u.GetDistance <= 8) >= 1)),
  35. // Attac multi
  36. new SpellState("Multi-Shot", 14,
  37. context => (ObjectManager.GetUnitAttackPlayer().Count() > 1)),
  38. new SpellState("Explosive Trap", 14,
  39. context => (ObjectManager.GetUnitAttackPlayer().Count(u => u.GetDistance <= 8) > 1)),
  40. // Attac
  41. new SpellState("Hunter's Mark", 15,
  42. context => (!ObjectManager.Target.HaveBuff("Hunter's Mark"))),
  43. new SpellState("Stampede", 13, context => HunterSettings.CurrentSetting.Stampede),
  44. new SpellState("Rapid Fire", 12, context => HunterSettings.CurrentSetting.RapidFire),
  45. new SpellState("Kill Shot", 11, context => true),
  46. new SpellState("Blink Strike", 10, context => HunterSettings.CurrentSetting.BlinkStrike),
  47. new SpellState("Serpent Sting", 9, context => ObjectManager.Me.Focus > 30 && !ObjectManager.Target.HaveBuff("Serpent Sting")),
  48. new SpellState("Kill Command", 8, context => ObjectManager.Pet.IsValid && ObjectManager.Pet.IsAlive && ObjectManager.Pet.Position.DistanceTo2D(ObjectManager.Target.Position) < 25),
  49. new SpellState("Bestial Wrath", 7, context => true),
  50. new SpellState("Dire Beast", 6, context => HunterSettings.CurrentSetting.DireBeast),
  51. new SpellState("Arcane Shot", 5, context => ObjectManager.Me.Focus > 30),
  52. new SpellState("Cobra Shot", 4, context => ObjectManager.Me.Focus < 25),
  53. new SpellState("Readiness", 3, context => HunterSettings.CurrentSetting.Readiness),
  54. }
  55. };
  56. _engine.StartEngine(5);
  57. }
  58.  
  59. public void Dispose()
  60. {
  61. if (_engine != null)
  62. {
  63. _engine.StopEngine();
  64. _engine.States.Clear();
  65. }
  66. }
  67.  
  68. public void ShowConfiguration()
  69. {
  70. HunterSettings.Load();
  71. HunterSettings.CurrentSetting.ToForm();
  72. HunterSettings.CurrentSetting.Save();
  73. }
  74.  
  75. class PetManager : State
  76. {
  77. public override int Priority { get; set; }
  78.  
  79. public override string DisplayName
  80. {
  81. get { return "Pet Manager"; }
  82. }
  83. Timer _petTimer = new Timer(-1);
  84. public override bool NeedToRun
  85. {
  86. get
  87. {
  88. if (!_petTimer.IsReady)
  89. return false;
  90.  
  91. if (ObjectManager.Me.IsDeadMe || ObjectManager.Me.IsMounted)
  92. {
  93. _petTimer = new Timer(1000 * 2);
  94. return false;
  95. }
  96. if (!ObjectManager.Pet.IsValid || ObjectManager.Pet.IsDead)
  97. return true;
  98. return false;
  99. }
  100. }
  101.  
  102. public override List<State> NextStates
  103. {
  104. get { return new List<State>(); }
  105. }
  106.  
  107. public override List<State> BeforeStates
  108. {
  109. get { return new List<State>(); }
  110. }
  111.  
  112. private readonly Spell _revivePet = new Spell("Revive Pet");
  113. private readonly Spell _callPet = new Spell("Call Pet 1");
  114.  
  115. public override void Run()
  116. {
  117. if (!ObjectManager.Pet.IsValid)
  118. {
  119. _callPet.Launch(true);
  120. Thread.Sleep(Usefuls.Latency + 1000);
  121. }
  122. if (!ObjectManager.Pet.IsValid || ObjectManager.Pet.IsDead)
  123. _revivePet.Launch(true);
  124.  
  125. _petTimer = new Timer(1000 * 2);
  126. }
  127. }
  128. }
  129.  
  130. [Serializable]
  131. public class HunterSettings : Settings
  132. {
  133. [Setting]
  134. [DefaultValue(false)]
  135. [Category("Beast Mastery")]
  136. [DisplayName("Rapid Fire")]
  137. [Description("Use Rapid Fire")]
  138. public bool RapidFire { get; set; }
  139.  
  140. [Setting]
  141. [DefaultValue(false)]
  142. [Category("Beast Mastery")]
  143. [DisplayName("Stampede")]
  144. [Description("Use Stampede")]
  145. public bool Stampede { get; set; }
  146.  
  147. [Setting]
  148. [DefaultValue(false)]
  149. [Category("Beast Mastery")]
  150. [DisplayName("Dire Beast")]
  151. [Description("Use Dire Beast")]
  152. public bool DireBeast { get; set; }
  153.  
  154. [Setting]
  155. [DefaultValue(false)]
  156. [Category("Beast Mastery")]
  157. [DisplayName("Readiness")]
  158. [Description("Use Readiness")]
  159. public bool Readiness { get; set; }
  160.  
  161. [Setting]
  162. [DefaultValue(false)]
  163. [Category("Beast Mastery")]
  164. [DisplayName("Blink Strike")]
  165. [Description("Use Blink Strike")]
  166. public bool BlinkStrike { get; set; }
  167.  
  168. private HunterSettings()
  169. {
  170. ConfigWinForm(new System.Drawing.Point(400, 400), "Hunter " + Translate.Get("Settings"));
  171. }
  172.  
  173. public static HunterSettings CurrentSetting { get; set; }
  174.  
  175. public bool Save()
  176. {
  177. try
  178. {
  179. return Save(AdviserFilePathAndName("CustomClass-Hunter", ObjectManager.Me.Name + "." + Usefuls.RealmName));
  180. }
  181. catch (Exception e)
  182. {
  183. Logging.WriteError("HunterSettings > Save(): " + e);
  184. return false;
  185. }
  186. }
  187.  
  188. public static bool Load()
  189. {
  190. try
  191. {
  192. if (File.Exists(AdviserFilePathAndName("CustomClass-Hunter", ObjectManager.Me.Name + "." + Usefuls.RealmName)))
  193. {
  194. CurrentSetting =
  195. Load<HunterSettings>(AdviserFilePathAndName("CustomClass-Hunter",
  196. ObjectManager.Me.Name + "." + Usefuls.RealmName));
  197. return true;
  198. }
  199. CurrentSetting = new HunterSettings();
  200. }
  201. catch (Exception e)
  202. {
  203. Logging.WriteError("HunterSettings > Load(): " + e);
  204. }
  205. return false;
  206. }
  207. }
 
Another C# Fight Class structure: http://pastebin.com/krBv3QCD )
using System;
using System.Threading;
using System.Windows.Forms;
using robotManager.Helpful;
using robotManager.Products;
using wManager.Wow.Class;
using wManager.Wow.Enums;
using wManager.Wow.Helpers;
using wManager.Wow.ObjectManager;
using Timer = robotManager.Helpful.Timer;
 
public class Main : ICustomClass
{
    public float Range { get { return 4.5f; } }
 
    private bool _isLaunched;
    private ulong _lastTarget;
 
    public void Initialize() // When product started, initialize and launch Fightclass
    {
        _isLaunched = true;
        Logging.Write("[My fightclass] Is initialized.");
        Rotation();
    }
 
    public void Dispose() // When product stopped
    {
        _isLaunched = false;
        Logging.Write("[My fightclass] Stop in progress.");
    }
 
    public void ShowConfiguration() // When use click on Fight class settings
    {
        MessageBox.Show("[My fightclass] No setting for this Fight Class.");
    }
 
 
    // SPELLS:
    // Buff:
    public Spell DeadlyPoison = new Spell("Deadly Poison");
    public Spell Sprint = new Spell("Sprint");
    // Pull:
    public Spell Stealth = new Spell("Stealth");
    // Combat:
    public Spell Garrote = new Spell("Garrote");
    public Spell SliceandDice = new Spell("Slice and Dice");
    public Spell Eviscerate = new Spell("Eviscerate");
    public Timer SliceandDiceTimer = new Timer(); // Timer
 
    internal void Rotation()
    {
        Logging.Write("[My fightclass] Is started.");
        while (_isLaunched)
        {
            try
            {
                if (!Products.InPause)
                {
                    if (!ObjectManager.Me.IsDeadMe)
                    {
                        BuffRotation();
 
                        if (Fight.InFight && ObjectManager.Me.Target > 0)
                        {
                            Pull();
                            CombatRotation();
                        }
                    }
                }
            }
            catch (Exception e)
            {
                Logging.WriteError("[My fightclass] ERROR: " + e);
            }
 
            Thread.Sleep(10); // Pause 10 ms to reduce the CPU usage.
        }
        Logging.Write("[My fightclass] Is now stopped.");
    }
 
    internal void BuffRotation()
    {
        if (ObjectManager.Me.IsMounted)
            return;
 
        // Deadly Poison:
        if (DeadlyPoison.KnownSpell && !DeadlyPoison.HaveBuff && DeadlyPoison.IsSpellUsable && !ObjectManager.Me.GetMove)
        {
            DeadlyPoison.Launch();
            return;
        }
        // Sprint
        if (Sprint.KnownSpell && !ObjectManager.Me.InCombat && ObjectManager.Me.GetMove && Sprint.IsSpellUsable)
        {
            Sprint.Launch();
            return;
        }
    }
    internal void Pull()
    {
        if (ObjectManager.Me.Target == _lastTarget)
            return;
 
        // Stealth:
        if (Stealth.KnownSpell && Stealth.IsSpellUsable && !Stealth.HaveBuff && ObjectManager.Target.Target != ObjectManager.Me.Guid)
        {
            Stealth.Launch();
            _lastTarget = ObjectManager.Me.Target;
        }
    }
 
    internal void CombatRotation()
    {
        // Garrote:
        if (Garrote.IsSpellUsable && Garrote.IsDistanceGood && Garrote.KnownSpell && ObjectManager.Me.HaveBuff(115192))
        {
            Garrote.Launch();
            return;
        }
        // Eviscerate:
        if (Eviscerate.KnownSpell && Eviscerate.IsSpellUsable && Eviscerate.IsDistanceGood && (ObjectManager.Me.ComboPoint > 4 || (SliceandDice.HaveBuff && SliceandDiceTimer.IsReady)))
        {
            Eviscerate.Launch();
            if (SliceandDice.HaveBuff)
                SliceandDiceTimer = new Timer(1000 * 36);
            return;
        }
    }
}

 

Sample Vb.net Fight Class base: ( http://pastebin.com/EETxYYi3 )

  1. Imports System.Collections.Generic
  2. Imports System.Linq
  3. Imports System.Threading
  4. Imports robotManager.FiniteStateMachine
  5. Imports robotManager.Helpful
  6. Imports wManager.Wow.Class
  7. Imports wManager.Wow.Helpers
  8. Imports wManager.Wow.ObjectManager
  9.  
  10. Public Class Main
  11. Implements ICustomClass
  12. Public ReadOnly Property Range As Single Implements ICustomClass.Range
  13. Get
  14. Return 5
  15. End Get
  16. End Property
  17.  
  18.  
  19. Public Sub Initialize() Implements ICustomClass.Initialize
  20.  
  21. End Sub
  22.  
  23. Public Sub Dispose() Implements ICustomClass.Dispose
  24.  
  25. End Sub
  26.  
  27. Public Sub ShowConfiguration() Implements ICustomClass.ShowConfiguration
  28.  
  29. End Sub
  30. End Class

Sample DLL:
Only create class Main (implement ICustomClass) without namespace in your dll.

Link to comment
https://wrobot.eu/forums/topic/12-how-to-create-an-fight-class-developer-only/
Share on other sites

What Ive actually been doing, (until i can hammer out my loc profile, and more classes become available) is using the default fight class (which basically /attack(s) and run PQR with WRobot, then WRobot handels the paths and interaction, and PQR does the actual rotation for fighting once your toon is in combat.  I do realize this completely defeats the purpose of fight classes, but it loops back to my origional suggestion of implementing pqr profiles.

You can launch lua script:

 

string money = Lua.LuaDoString("money  = GetMoney()", "money");

 

 

And you can use others structs: (sample of tnb customclass: http://pastebin.com/vqjFFJEE )
 
 
For create product (grinder, gatherer, ...) I use api of robotManager.dll and wManager.dll (like for fights class), you have acces at a lot of informations for create fights class.
  • 1 year later...

Sample to use shortcut to activate/deactivate spells (look "_hookKeybindingsSpells"):

Before WoD

using System;
using System.Threading;
using System.Windows.Forms;
using robotManager.Helpful;
using robotManager.Products;
using wManager.Wow.Class;
using wManager.Wow.Enums;
using wManager.Wow.Helpers;
using wManager.Wow.ObjectManager;
using Timer = robotManager.Helpful.Timer;

public class Main : ICustomClass
{
    public float Range { get { return 20; } }

    private bool _isLaunched;
    private ulong _lastTarget;
    readonly KeyboardHook _hookKeybindingsSpells = new KeyboardHook();
    private bool _spellsActivated = false;

    public void Initialize() // When product started, initialize and launch Fightclass
    {
        _isLaunched = true;

        _hookKeybindingsSpells.KeyPressed += HookSpellsKeyPressed;
        _hookKeybindingsSpells.RegisterHotKey(ModifierKeys.Alt, Keys.Q);

        Logging.Write("[My fightclass] Is initialized.");
        Rotation();
    }

    private void HookSpellsKeyPressed(object sender, KeyPressedEventArgs e)
    {
        _spellsActivated = !_spellsActivated;
        if (_spellsActivated)
            Logging.Write("[My fightclass] Spells is activated.");
        else
            Logging.Write("[My fightclass] Spells is desactivated.");
    }

    public void Dispose() // When product stopped
    {
        _isLaunched = false;

        _hookKeybindingsSpells.Dispose();

        Logging.Write("[My fightclass] Stop in progress.");
    }

    public void ShowConfiguration() // When use click on Fight class settings
    {
        MessageBox.Show("[My fightclass] No setting for this Fight Class.");
    }

    // SPELLS:
    public Spell SteadyShot = new Spell("Steady Shot"); // or "Arcane Shot"

    internal void Rotation()
    {
        if (!SteadyShot.KnownSpell)
            SteadyShot = new Spell("Arcane Shot");

        Logging.Write("[My fightclass] Is started.");
        while (_isLaunched)
        {
            try
            {
                if (!Products.InPause)
                {
                    if (!ObjectManager.Me.IsDeadMe)
                    {
                        BuffRotation();

                        if (Fight.InFight && ObjectManager.Me.Target > 0)
                        {
                            Pull();
                            CombatRotation();
                        }
                    }
                }
            }
            catch (Exception e)
            {
                Logging.WriteError("[My fightclass] ERROR: " + e);
            }

            Thread.Sleep(10); // Pause 10 ms to reduce the CPU usage.
        }
        Logging.Write("[My fightclass] Is now stopped.");
    }

    internal void BuffRotation()
    {
        if (ObjectManager.Me.IsMounted)
            return;

    }

    internal void Pull()
    {
        if (ObjectManager.Me.Target == _lastTarget)
            return;

        if (ObjectManager.Target.Target != ObjectManager.Me.Guid)
        {

            _lastTarget = ObjectManager.Me.Target;
        }
    }

    internal void CombatRotation()
    {
        // Steady Shot or Arcane Shot
        if (_spellsActivated) // Alt-Q
        {
            if (SteadyShot.IsSpellUsable && SteadyShot.IsDistanceGood && SteadyShot.KnownSpell)
            {
                SteadyShot.Launch(false);
                return;
            }
        }
    }
}

Since WoD:

using System;
using System.Threading;
using System.Windows.Forms;
using MemoryRobot;
using robotManager.Helpful;
using robotManager.Products;
using wManager.Wow.Class;
using wManager.Wow.Helpers;
using wManager.Wow.ObjectManager;

public class Main : ICustomClass
{
    public float Range { get { return 20; } }

    private bool _isLaunched;
    private Int128 _lastTarget;
    readonly KeyboardHook _hookKeybindingsSpells = new KeyboardHook();
    private bool _spellsActivated = false;

    public void Initialize() // When product started, initialize and launch Fightclass
    {
        _isLaunched = true;

        _hookKeybindingsSpells.KeyPressed += HookSpellsKeyPressed;
        _hookKeybindingsSpells.RegisterHotKey(ModifierKeys.Alt, Keys.Q);

        Logging.Write("[My fightclass] Is initialized.");
        Rotation();
    }

    private void HookSpellsKeyPressed(object sender, KeyPressedEventArgs e)
    {
        _spellsActivated = !_spellsActivated;
        if (_spellsActivated)
            Logging.Write("[My fightclass] Spells is activated.");
        else
            Logging.Write("[My fightclass] Spells is desactivated.");
    }

    public void Dispose() // When product stopped
    {
        _isLaunched = false;

        _hookKeybindingsSpells.Dispose();

        Logging.Write("[My fightclass] Stop in progress.");
    }

    public void ShowConfiguration() // When use click on Fight class settings
    {
        MessageBox.Show("[My fightclass] No setting for this Fight Class.");
    }

    // SPELLS:
    public Spell SteadyShot = new Spell("Steady Shot"); // or "Arcane Shot"

    internal void Rotation()
    {
        if (!SteadyShot.KnownSpell)
            SteadyShot = new Spell("Arcane Shot");

        Logging.Write("[My fightclass] Is started.");
        while (_isLaunched)
        {
            try
            {
                if (!Products.InPause)
                {
                    if (!ObjectManager.Me.IsDeadMe)
                    {
                        BuffRotation();

                        if (Fight.InFight && ObjectManager.Me.Target.IsNotZero())
                        {
                            Pull();
                            CombatRotation();
                        }
                    }
                }
            }
            catch (Exception e)
            {
                Logging.WriteError("[My fightclass] ERROR: " + e);
            }

            Thread.Sleep(10); // Pause 10 ms to reduce the CPU usage.
        }
        Logging.Write("[My fightclass] Is now stopped.");
    }

    internal void BuffRotation()
    {
        if (ObjectManager.Me.IsMounted)
            return;

    }

    internal void Pull()
    {
        if (ObjectManager.Me.Target == _lastTarget)
            return;

        if (ObjectManager.Target.Target != ObjectManager.Me.Guid)
        {

            _lastTarget = ObjectManager.Me.Target;
        }
    }

    internal void CombatRotation()
    {
        // Steady Shot or Arcane Shot
        if (_spellsActivated) // Alt-Q
        {
            if (SteadyShot.IsSpellUsable && SteadyShot.IsDistanceGood && SteadyShot.KnownSpell)
            {
                SteadyShot.Launch(false);
                return;
            }
        }
    }
}

 

  • 1 year later...
  • 5 weeks later...
  • 10 months later...
  On 1/24/2017 at 2:24 AM, Doobie said:

Does this way still work or is it obsolete now?

Expand  

Hello, I have fixed code http://wrobot.eu/forums/topic/12-how-to-create-an-fight-class-developer-only/?do=findComment&comment=6778

  On 1/24/2017 at 10:30 AM, Droidz said:
Expand  

Okay I am using it for vanilla is the API the same? Like can I use the Before WOD structure for a vanilla fight class.

  • 2 weeks later...
  On 2/6/2017 at 10:04 PM, kpeno said:

All this now working for 1.12.1? right?

Expand  

Yes, only change is before WoD, wow GUID in int64 (or long, ulong, uint64), since WoD wow GUID is Int128

  • 1 year later...
  • 4 months later...
  On 8/2/2018 at 11:33 AM, Genifikius said:

Could you upload a documentation of the bot API or link it if its already uploaded somewhere?

Expand  

There isn't one. Best things you can do is either decompile the DLLs or reference it in something like Visual Studio and then look through the functions in the Object Browser. The main DLL you'd be interested in is wManager

Edited by Marsbar
  On 8/2/2018 at 11:35 AM, Marsbar said:

There isn't one. Best things you can do is either decompile the DLLs or reference it in something like Visual Studio and then look through the functions in the Object Browser. The main DLL you'd be interested in is wManager

Expand  

Are these DLLs managed or unmanaged?

Jetbrains dotPeek is quite simple and free
Gotta say tho I find it easier going through the object browser in VS

example:

f7b8056265aa7095de6a7972279f64de.png

Edited by Marsbar

Is the this: Another C# Fight Class structure: http://pastebin.com/krBv3QCD )

still usable? Because i tried to use it and it shows:

[E] 11:44:51 - Fight Class Loading error.

What is the best way to debug a fightclass?

 

  On 8/4/2018 at 9:47 AM, nfx said:

Is the this: Another C# Fight Class structure: http://pastebin.com/krBv3QCD )

still usable? Because i tried to use it and it shows:

[E] 11:44:51 - Fight Class Loading error.

What is the best way to debug a fightclass?

 

Expand  

Yeah, should still work.
A few different ways, I'd say either add loads of logging or do a Debugger.Launch() in the initialize (make sure to ref System.Diagnostics), that will prompt a JIT debugger and you can then step through it in VS.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...