Jump to content

TheSmokie

Banned
  • Posts

    1215
  • Joined

Everything posted by TheSmokie

  1. Think about money laundering, just buy stuff oh value with it. Send it to different toons on different free accounts then send to main account. You
  2. I think if he’s unable to pay with a credit card or debt card that he she stop trying.
  3. SORRY havent gotten to it, been busy with my own projects. ill get to it soon.
  4. For warmane 3.3.5a, it will log you off ingame.
  5. 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; } } }
  6. 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.
  7. Don’t use wrobot while having retail open. You can get banned.
  8. I’ll have a look at it once I finish what I’m doing.
  9. Are you using a custom client? If yes you need to download the original Client
  10. I’ll run my own tests on warmane/ dragonblight in a little bit. See if I am right.
  11. 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.
  12. For suggestions go to bug tracker area and Theresa option to suggest options.
  13. Should be easy enuf. Give me a few days. I need to finish working on something first.
  14. I’d have to try it. I never done something that’s different from normal game play . Other then fix bugs.
  15. 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.
  16. Wrobot will not be supporting retail or classic wow.
  17. 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.
  18. 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"); }
  19. 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.
  20. Until you have a key to wrobot, I don’t think anyone will help. Sorry.
×
×
  • Create New...