Jump to content

Droidz

Administrators
  • Posts

    12519
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, you need to install SlimDX (4.0 X86)
  2. Hello, If you get stuck often it is probably your profile. But movement behavior can't be changed with default WRobot feature.
  3. Hello, you can use lua https://wowwiki-archive.fandom.com/wiki/API_Quit but, no easy way to use it with relogger. And I found it better to not save settings, some profiles/plugins/fightclass modify wow settings.
  4. 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?
  5. Hello, wait next updaet
  6. Changed Status to Added Changed Version to All
  7. 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)
  8. Hello, To start, try to disable all Wow addons. Try to increment your min/max latency (in advanced general settings)
  9. Hello, try to reset your Wow shortcut (and restart bot). In advanced general settings tab "Looting..." option "Skip nodes in water"
  10. 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".
  11. 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.
  12. 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
  13. Hello, you have forget the "return" : return wManager.Wow.ObjectManager.ObjectManager.Me.Level < 10;
  14. 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
  15. Hello, I recently added https://wrobot.eu/allopass/
  16. Hello, if you use Wow addons try to disable all
  17. Hello, I added a new payment gateway that not require a credit card, info here : https://wrobot.eu/allopass/
  18. Hello, I added a new payment gateway that not require a credit card, info here : https://wrobot.eu/allopass/ View full article
  19. Hello, look https://wrobot.eu/forums/topic/9418-the-proxy-and-you/
  20. Hello, look this code https://wrobot.eu/forums/topic/12019-change-current-settings/?do=findComment&comment=57535&_rid=1
  21. 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)
  22. Hello, https://wrobot.eu/forums/topic/11291-force-the-collection-of-herbs/#comment-54077
  23. 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() { } }
  24. 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?
×
×
  • Create New...