Jump to content

Droidz

Administrators
  • Posts

    12581
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, try to increment you "min latency" in advanced general settings
  2. It is probably server problem, try this plugin: using System.Threading; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { public void Initialize() { wManager.Events.InteractEvents.OnInteractPulse += (target, cancelable) => { if (ObjectManager.GetObjectByGuid(target) is WoWGameObject) { Move.Backward(); Move.Forward(); Thread.Sleep(30); } }; } public void Dispose() { } public void Settings() { } }
  3. Hello, you haven't changed your antivirus or installed another software since?
  4. Wow window title has changed? (maybe you need to run this program with admin right)
  5. Hello, use program like https://sourceforge.net/projects/windowtitle/ to change window name to "World of Warcraft":
  6. yes he seems stuck as if he was falling. You have try without wow addons?
  7. Hello, try to increment your min latency and activate "use lua to move" in advanced general settings (if problem is not resolved please share your log file
  8. you probably use "Var.GetVar("varname")" instead "Var.GetVar<type>("varname")" ( https://docs.microsoft.com/dotnet/csharp/misc/cs0411 )
  9. check all steps with the code "Var.GetVar"
  10. you have probably error on one of your steps, in this case bot use old method to run steps (you will get again slow problem)
  11. Hey, I use only lua api I don't know why this move your cursor: public static void GoUnderWater() { Lua.LuaDoString("MoveViewUpStart()"); Thread.Sleep(1000); Lua.LuaDoString("MoveViewUpStop() MoveAndSteerStart() MoveAndSteerStop()"); }
  12. I fixed it in new update, now the bot compiles all the steps at start (in one time) and the calls from the cache. For that this works, must be no error in the C # codes used in profile "steps" (a lot of profiles have bad code, you have an error log when profile is loaded if error and the steps codes are compiled 1 by 1 as before)
  13. log files that you can found in folder "Wrobot\logs\"
  14. Hello, This is the first time that this error has been reported. Do you have a few session logs where the bot crashes? Have you tried a new installation without a plugin and with another fightclass?
  15. Hello, you can found invoice here https://wrobot.eu/clients/orders/
  16. https://wrobot.eu/forums/topic/13004-server-connection-wow-335-wrobot-cant-login-used-to-work-randomly-stopped-working/?tab=comments#comment-61858
  17. I found cause (C# compiler, more he has compiled code, slower it is) . For the moment, I don't know if I'll be able to fix it.
  18. Hello, you error is: insufficient_funds
  19. ok I found, sorry I rarely watch Discord
  20. yes if someone can send me a profile that causes this problem (and tell me the context of the character, if possible easy to reproduce) that I try.
  21. Hello, when you use flying mount?
  22. Hi, Logging.Write("==================="); var t = System.Diagnostics.Stopwatch.StartNew(); uint id = 8326; var n = "Ghost"; var s = System.Diagnostics.Stopwatch.StartNew(); Logging.Write("TargetObject.HaveBuff(id) > " + wManager.Wow.ObjectManager.ObjectManager.Me.TargetObject.HaveBuff(id) + " > " + s.ElapsedMilliseconds); s.Restart(); Logging.Write("TargetObject.GetBuff(n) > " + wManager.Wow.ObjectManager.ObjectManager.Me.TargetObject.GetBuff(n) + " > " + s.ElapsedMilliseconds); s.Restart(); Logging.Write("Target.HaveBuff(id) > " + wManager.Wow.ObjectManager.ObjectManager.Target.HaveBuff(id) + " > " + s.ElapsedMilliseconds); s.Restart(); Logging.Write("Target.GetBuff(n) > " + wManager.Wow.ObjectManager.ObjectManager.Target.GetBuff(n) + " > " + s.ElapsedMilliseconds); Logging.Write(t.ElapsedMilliseconds + " ms ========"); I can't reproduce problem, if you can code that I can run for that. But it is better to use objectmanager.target to get character target (it is more safe and bot cache result)
  23. Hello, can you give more detail about your problem
  24. Put 1
×
×
  • Create New...