Jump to content

Droidz

Administrators
  • Posts

    12436
  • Joined

  • Last visited

Everything posted by Droidz

  1. You need to activate option "Don't join queue if i'm not group leader" on all characters (same leader)
  2. Hello, Your problem is probably local, no others rapport. You have this problem only on this internet access?
  3. I live in France (UTC +01:00), normally, wow update are at 19:00 pm, except this update was posted around 3:00 am. I watched before going to sleep around 2:00 am no update, I have updated bot at my wake (It is for this reason I haven't post message before). Generally bot is updated 1 hour or 2 after the release of a large patch (No update required for small wow patch).
  4. Hello, Indeed, Blizzard have added new method for detect bot, this method is destined a another bot, and can affect some others bots. This checks from where is called the wow function named lua_load, and I do not use this function with WRobot. WRobot is not affected by this, if there is a known risk I stop wrobot auth server directly (this close automaticly your bot). But don't forget, botting is dangerous for your wow account, I recommand to not bot on your main account, mainly currently.
  5. Hello, Can you share your log please
  6. Hello, You need to add npc trainer at your wrobot list. Go to General settings, tab others, button developement tools, click on button Npc db. (you can get information and position of npc in dev tools).
  7. Not all donjons have mesh (for generate path). This can cause problem. Try to turn off option manage movement in product settings (you need move to target manually).
  8. Hello, In comment of this figthclass: user has posted fix: Do you have tried to remove this lines?
  9. I have added this option in last wrobot update, if you can tell me if this works.
  10. Hello, In your fightclass replace Incinerate by Shadow Bolt (more info here: )
  11. Version 1.1 BETA

    1240 downloads

    Pickpocketing bot Pick-pocket any mobs in range of 200 yards of character position start. Beta version, if you have ideas for improve this custom profile tell me (you can also edit this profile alone). Auto Install Click Here: " target="_blank" title="Pickpocketing Custom Profile by Droidz">Pickpocketing Custom Profile by Droidz With this profile you need to use this FightClass: ps: If you use version with profile support, please record new profile with "Grinder bot", save profile in "WRobot/Profiles/Grinder/" and select it when you launch this custom profile (this custom profile don't support sub zone).
  12. I cannot reproduce your problem. You have tried with others characters? FightClass? Disable your wow addons?
  13. Hello, WRobot is now updated for World of Warcraft 5.3.0 build 17055. Just launch bot and accept update, good botting at all.
  14. Hello, WRobot is now updated for World of Warcraft 5.3.0 build 17055. Just launch bot and accept update, good botting at all.
  15. Update bot, now wrobot support last wow patch.
  16. Hello, I start to works on new update, sorry for the delay I do not think there would be updates to this hour. (WRobot required update when new wow patch)
  17. What is state when wrotation bug?
  18. Hello, sample code (fightclass in c#, save this file in *.cs): using System; using System.Threading; using System.Windows.Forms; using robotManager.Helpful; using wManager.Wow.Class; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : ICustomClass { public float Range { get { return 4.5f; } } // Fight Range private bool _isLaunched; private const string FightClassName = "Interrupts"; #region ListSpells private Spell _mightyBash; #endregion ListSpells public void Initialize() { Logging.Write("Loading FightClass: " + FightClassName); // Init spells: _mightyBash = new Spell("Mighty Bash"); Logging.Write("FightClass Loaded: " + FightClassName); // Launch loop in new thread: _isLaunched = true; var threadLoop = new Thread(Loop); threadLoop.Start(); Logging.Write("FightClass Launched: " + FightClassName); } private void Loop() { while (_isLaunched) { try { if (Fight.InFight && ObjectManager.Target.IsValid) { // Spell Mighty Bash: if (ObjectManager.Target.IsCast && _mightyBash.IsSpellUsable && _mightyBash.IsDistanceGood) { var resultLua = Lua.LuaDoString( "ret = \"false\"; spell, rank, displayName, icon, startTime, endTime, isTradeSkill, castID, interrupt = UnitCastingInfo(\"target\"); if interrupt then ret = \"true\" end", "ret"); if (resultLua == "true") { _mightyBash.Launch(); } } } } catch (Exception e) { Logging.Write("Error in FightClass " + FightClassName + ": " + e); } Thread.Sleep(35); // Wait for UC usage } } public void Dispose() { _isLaunched = false; Logging.Write("FightClass Disposed: " + FightClassName); } public void ShowConfiguration() { MessageBox.Show("No setting for this Fight Class: " + FightClassName); } }
  19. Thank, I have fixed problem, wait next update.
  20. Hello, There is a trial version (put "trial" when wrobot request license key) to give you an idea and see if the bot is suitable for your needs. I works hard to propose a quality bot and up to date.
  21. Hello, Can you share full log file please. I'll watch it. Thank.
  22. Ok, can you send me your skype by private message please.
  23. Hello, Can you share your log file please. Do you have tried to reinstall/Repair framework 4.0 and vc++ 2010 ?
  24. Hello, Can you share your log file and tell me what profile do you use. Thank.
×
×
  • Create New...