April 29, 20214 yr After the bot descends from the mount near the resource, it can not collect it. The label appears: "Can't do that while moving." If you take a step back, it will collect the resource. In the form of a bird, he also can not collect a resource. Another problem is that he can't use the mammoth for sale. This can be seen in the second video. "You have collected this mount but it is not usable on this character" But I can summon it manually. The bot can't.
April 29, 20214 yr 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
April 29, 20214 yr Author If you press the move button after landing, it will be able to collect the resource. I have to put an automatic clicker so that it presses the forward key for one millisecond every 2 seconds so that the bot can collect all the resources ? but this prevents me from using a computer mouse)
May 2, 20214 yr 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() { } }
Create an account or sign in to comment