Jump to content

Droidz

Administrators
  • Posts

    12442
  • Joined

  • Last visited

Everything posted by Droidz

  1. Can you give me name of areas where wrotation does not work correctly, I'll test and fix it. Thanks
  2. I'll watch how I can improve it, I tell you when I have added it (or find solution)
  3. Hello, In profile creator, when your create or edit your profile:
  4. You can try to use VPN (or software similar at http://www.hotspotshield.com/ )
  5. Hi, They have profiles for these zones with wrobot by default, this profiles works fine.
  6. You need to activate option "Don't join queue if i'm not group leader" on all characters (same leader)
  7. Hello, Your problem is probably local, no others rapport. You have this problem only on this internet access?
  8. 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).
  9. 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.
  10. Hello, Can you share your log please
  11. 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).
  12. 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).
  13. Hello, In comment of this figthclass: user has posted fix: Do you have tried to remove this lines?
  14. I have added this option in last wrobot update, if you can tell me if this works.
  15. Hello, In your fightclass replace Incinerate by Shadow Bolt (more info here: )
  16. 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).
  17. I cannot reproduce your problem. You have tried with others characters? FightClass? Disable your wow addons?
  18. Hello, WRobot is now updated for World of Warcraft 5.3.0 build 17055. Just launch bot and accept update, good botting at all.
  19. Hello, WRobot is now updated for World of Warcraft 5.3.0 build 17055. Just launch bot and accept update, good botting at all.
  20. Update bot, now wrobot support last wow patch.
  21. 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)
  22. What is state when wrotation bug?
  23. 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); } }
  24. Thank, I have fixed problem, wait next update.
×
×
  • Create New...