Jump to content

Droidz

Administrators
  • Posts

    12596
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, your profile is for Wotlk ? Profile path are good (not positions underground or in water)? When you activate Radar3D where bot try to go ? Do you have tried to disable your wow addons and wrobot plugins? DO you have log file of bugged session?
  2. Hello, wait next updaet
  3. Changed Status to Added Changed Version to All
  4. Try to activate radar3d (tab "Map") to see where the bot is trying to go. Try also to use option "Use lua to move" (in advanved general settings)
  5. Hello, To start, try to disable all Wow addons. Try to increment your min/max latency (in advanced general settings)
  6. Hello, try to reset your Wow shortcut (and restart bot). In advanced general settings tab "Looting..." option "Skip nodes in water"
  7. Hello, probably because NPC is dead. You need to interact with him with quest type "InteractWith" (donc forget to enable quest option "accept dead npc".
  8. Hello, To start, disable all Wow addons. If your problem is not resolved try to disable (one per one, to found if one of them is the problem) all wrobot plugins and change/disable fightclass/profile.
  9. Hello, in the quest option (base settings) you can use "WhenSelectStep" and "WhenLeaveStep". Or in quests profile steps you can add RunCode steps before and after to pulse your quest
  10. Hello, you have forget the "return" : return wManager.Wow.ObjectManager.ObjectManager.Me.Level < 10;
  11. Yes : https://wrobot.eu/byme/doc/html/AllMembers.T-wManager.wManagerSetting.htm https://wrobot.eu/byme/doc/html/AllMembers.T-wManager.wManagerGlobalSetting.htm https://wrobot.eu/byme/doc/html/AllMembers.T-robotManager.robotManagerGlobalSetting.htm
  12. Hello, I recently added https://wrobot.eu/allopass/
  13. Hello, if you use Wow addons try to disable all
  14. Hello, I added a new payment gateway that not require a credit card, info here : https://wrobot.eu/allopass/
  15. Hello, I added a new payment gateway that not require a credit card, info here : https://wrobot.eu/allopass/ View full article
  16. Hello, look https://wrobot.eu/forums/topic/9418-the-proxy-and-you/
  17. Hello, look this code https://wrobot.eu/forums/topic/12019-change-current-settings/?do=findComment&comment=57535&_rid=1
  18. Hello, you can't, but you can check if character is in game : https://wrobot.eu/byme/doc/html/P-wManager.Wow.Helpers.Usefuls.InGame.htm (if false the game is in login screen or select character screen). You can conbine InGame with https://wrobot.eu/byme/doc/html/P-wManager.Wow.Helpers.Usefuls.IsLoadingOrConnecting.htm . When not InGame you can only run lua script without return value with https://wrobot.eu/byme/doc/html/M-wManager.Wow.Helpers.Lua.LuaDoString_5.htm (put true at the second argument)
  19. Hello, https://wrobot.eu/forums/topic/11291-force-the-collection-of-herbs/#comment-54077
  20. Use Wrobot plugin it is better: using System.Diagnostics; using wManager.Wow.Helpers; public class Main : wManager.Plugin.IPlugin { public void Initialize() { var t = Stopwatch.StartNew(); wManager.Events.FightEvents.OnFightLoop += (unit, cancelable) => { if (t.ElapsedMilliseconds > 1000) // Every second { Lua.LuaDoString("QuickHeal()"); t.Restart(); } }; } public void Dispose() { } public void Settings() { } } Or using System.Diagnostics; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { public void Initialize() { var t = Stopwatch.StartNew(); wManager.Events.FightEvents.OnFightLoop += (unit, cancelable) => { if (t.ElapsedMilliseconds > 1000) // Every second { Lua.LuaDoString("QuickHeal()"); if (unit.Guid != ObjectManager.Me.Target) // Target change, cancel fight and start new { cancelable.Cancel = true; Fight.StartFight(ObjectManager.Me.Target); return; } t.Restart(); } }; } public void Dispose() { } public void Settings() { } }
  21. Hello, on which server? Did you run multiple bots at the same time? On the same server? Did you use one IP per game? Did you use one browser/IP per registered account?
  22. Hello, in advanced general settings tab Food/Drink
  23. Hello, what macro do you want run, and in what conditions/frequency?
  24. Try to restart your computer and launch again "Updater.exe" to check if an update is available.
  25. Hello, MOP is special version, they are more possibility to detect the bot that with older versions. All forums are visibles for not registred/suscribers. You can (and it is recommanded), for free use the key "TRIAL" to test if WRobot works on your servers before purshase. I released new update, game close problem seems resolved. But be carreful, they can fix it quickly if they are actives, and next time not only close game but ban your account. Use WRobot intelligently, don't abuse of it, there's a better chance that everything will go well. The goal is not to annoy other players, or to annoy teams working on the private server. The goal of WRobot is to help you with the mandatory tasks that you no longer enjoy, to then enjoy the good times of the game.
×
×
  • Create New...