-
Posts
1215 -
Joined
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by TheSmokie
-
Profile I created wont leave instance and reset.
TheSmokie replied to Reborn's topic in General assistance
SORRY havent gotten to it, been busy with my own projects. ill get to it soon. -
-
Why I think WRobot is detected on Netherwing (Atlantiss)
TheSmokie replied to Jhin's topic in General discussion
People could be using a cracked copy. -
fps drop when bot switches target.
TheSmokie replied to superkillen's topic in Fight Classes assistance
if i was you, id learn C# from @Marsbar Video and make you're fightclass using C# Here some code from @Droidz 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; } } } -
fps drop when bot switches target.
TheSmokie replied to superkillen's topic in Fight Classes assistance
You're code has buffs and spells from different classes / races. i would do one fightclass with spells from 1 spec/ race at a time. -
Getting banned on retail for botting on private servers ?
TheSmokie replied to rambuk's topic in General discussion
Don’t use wrobot while having retail open. You can get banned. -
fps drop when bot switches target.
TheSmokie replied to superkillen's topic in Fight Classes assistance
I’ll have a look at it once I finish what I’m doing. -
Are you using a custom client? If yes you need to download the original Client
-
I’ll run my own tests on warmane/ dragonblight in a little bit. See if I am right.
-
This might be caused by the private server if playing on one with a decent population. I think the dev of the server may bug pathfinding.
-
A wish for implementation of two useful methods
TheSmokie replied to Memus's topic in Developers assistance
For suggestions go to bug tracker area and Theresa option to suggest options. -
Profile I created wont leave instance and reset.
TheSmokie replied to Reborn's topic in General assistance
Should be easy enuf. Give me a few days. I need to finish working on something first. -
Profile I created wont leave instance and reset.
TheSmokie replied to Reborn's topic in General assistance
I’d have to try it. I never done something that’s different from normal game play . Other then fix bugs. -
Profile I created wont leave instance and reset.
TheSmokie replied to Reborn's topic in General assistance
If you tell me what instance you are trying to use, I’ll download unlimited wow client and do it for you. As a friend hand. -
it will say in you're logs .
-
Wrbot and clasic retail?
TheSmokie replied to joanet's topic in WRobot for Wow Vanilla - Help and support
Wrobot will not be supporting retail or classic wow. -
i think it might be move during combat because of the fact that if you're flying that low you will get into combat with atleast one mob but because you're fightclass is set to do nothing if mount it bugs out.
-
How to create an Fight Class (developer only)
TheSmokie replied to Droidz's topic in Tutorials - WRobot
make sure to check you're conditions. in making a fightclass, a friend of mine was having problems his and i had to edit it. nternal void Rotation() // Rotation itself { while (_isLaunched) { try { if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause && !(Fight.InFight)) { BuffRotation(); // Out of Combat buffing } else if (Fight.InFight && ObjectManager.Me.Target > 0) { CombatRotation(); //call of Combatroutine } } catch (Exception e) { Logging.WriteError("error" + e); } Thread.Sleep(10); // little sleep for 10ms } Logging.Write("STOPPED"); } -
Try disabling them.
-
Profile I created wont leave instance and reset.
TheSmokie replied to Reborn's topic in General assistance
It’s not a pathetic thing to say, these forums are for people who have a key. Most devs won’t work for someone who doesn’t have a key. Reason being if you can’t pay for a key then how would they get paid, beside most devs encrypt there profiles and once it’s encrypted trial accounts do not work. With you posting all this wanna buy without a key kinda says you’re using a old cracked copy that isn’t worth it. Which makes dev really not wanna do anything for you. -
Profile I created wont leave instance and reset.
TheSmokie replied to Reborn's topic in General assistance
Until you have a key to wrobot, I don’t think anyone will help. Sorry.