Jump to content

Droidz

Administrators
  • Posts

    12618
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, Can you share your log please
  2. 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).
  3. 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).
  4. Hello, In comment of this figthclass: user has posted fix: Do you have tried to remove this lines?
  5. I have added this option in last wrobot update, if you can tell me if this works.
  6. Hello, In your fightclass replace Incinerate by Shadow Bolt (more info here: )
  7. Version 1.1 BETA

    1272 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).
  8. I cannot reproduce your problem. You have tried with others characters? FightClass? Disable your wow addons?
  9. Hello, WRobot is now updated for World of Warcraft 5.3.0 build 17055. Just launch bot and accept update, good botting at all.
  10. Hello, WRobot is now updated for World of Warcraft 5.3.0 build 17055. Just launch bot and accept update, good botting at all.
  11. Update bot, now wrobot support last wow patch.
  12. 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)
  13. What is state when wrotation bug?
  14. 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); } }
  15. Thank, I have fixed problem, wait next update.
  16. 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.
  17. Hello, Can you share full log file please. I'll watch it. Thank.
  18. Ok, can you send me your skype by private message please.
  19. Hello, Can you share your log file please. Do you have tried to reinstall/Repair framework 4.0 and vc++ 2010 ?
  20. Hello, Can you share your log file and tell me what profile do you use. Thank.
  21. Hello, You need to use FightClass, look this video for install/settings FightClass: http://youtu.be/Z3Nej3dxQKY?t=1m25s
  22. Bot crash directly or you can view wrobot window? Do you have log create (in "Log" folder) if yes can you send me it please.
  23. Hello, Do you have installed this programs: If this don't works try also to reinstall wrobot. Tell me if your problem is solved.
  24. Hello, WRotation help you manage the rotation during the fight (wrotation does not take control of your character out of combat).
×
×
  • Create New...