Everything posted by TheSmokie
-
[Search] Good Profiles for BTC
I think if he’s unable to pay with a credit card or debt card that he she stop trying.
-
Profile I created wont leave instance and reset.
SORRY havent gotten to it, been busy with my own projects. ill get to it soon.
- LootFilterWrobot
- Why I think WRobot is detected on Netherwing (Atlantiss)
-
fps drop when bot switches target.
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.
-
Getting banned on retail for botting on private servers ?
Don’t use wrobot while having retail open. You can get banned.
- fps drop when bot switches target.
-
Turn off "Bot pause if player nearby"
Should be working then
-
Wrobot dont work
Are you using a custom client? If yes you need to download the original Client
-
Flying Mounts broken in TBC/WOTLK
I’ll run my own tests on warmane/ dragonblight in a little bit. See if I am right.
-
Flying Mounts broken in TBC/WOTLK
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.
-
Turn off "Bot pause if player nearby"
Go to settings, there should be a option for this!
-
A wish for implementation of two useful methods
For suggestions go to bug tracker area and Theresa option to suggest options.
-
Profile I created wont leave instance and reset.
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.
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.
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.
-
Private Server custom quest ID
it will say in you're logs .
-
Wrbot and clasic retail?
Wrobot will not be supporting retail or classic wow.
-
Flying Mounts broken in TBC/WOTLK
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)
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"); }
-
Flying Mounts broken in TBC/WOTLK
Try disabling them.
-
Profile I created wont leave instance and reset.
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.
Until you have a key to wrobot, I don’t think anyone will help. Sorry.
-
Wrath 3.3.5a #C issues in fightclass
Thank you mars, I told him that using bag slot will case problems because of the fact there are other bags and sometime food isn’t even in you’re main bag.