September 12, 20241 yr Hello have the problem that afther a fight the bot will click on the dead mob open the loot window but didnt loot. The server have "Auto loot" (Quick loot) without pressing Shift + Mouse is it possible that the bot didnt use quickloot i think the problem ist if the server have quickloot and the bot use it too that he didnt loot. i just need to know how can i change the bot from quick loot to normal loot
September 12, 20241 yr Hello, try this plugin : using wManager.Wow.Enums; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { public void Initialize() { var stopWatch = new System.Diagnostics.Stopwatch(); wManager.Events.InteractEvents.OnInteractPulse += (target, cancelable) => { if (stopWatch.ElapsedMilliseconds < 1000 && stopWatch.IsRunning) { return; } var obj = ObjectManager.GetObjectByGuid(target); if (obj.IsValid && (obj.Type == WoWObjectType.Unit || obj.Type == WoWObjectType.GameObject)) { var isLootable = false; if (obj.Type == WoWObjectType.Unit) { var unit = new WoWUnit(obj.GetBaseAddress); isLootable = unit.IsLootable; } else if (obj.Type == WoWObjectType.GameObject) { isLootable = true; } if (isLootable) { stopWatch.Restart(); Interact.InteractGameObject(obj.GetBaseAddress); cancelable.Cancel = true; } } }; } public void Dispose() { } public void Settings() { } } Main.cs
September 12, 20241 yr Author Thanks i try it in 1 hour If im at Home, The next Problem is they didnt use Skills. They only Run to the target and Meele Auto Attack in the log would be the skills. Log say using Skil XY (XY= Any skill Name) and ingame the only Auto Attack If we can Solve this too im rly fine ☺️💪
September 12, 20241 yr Author have the Same Problem. What he means with the Last Post ? And i think He dont use buffs too
September 12, 20241 yr Author 9 hours ago, Droidz said: Hello, try this plugin : using wManager.Wow.Enums; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { public void Initialize() { var stopWatch = new System.Diagnostics.Stopwatch(); wManager.Events.InteractEvents.OnInteractPulse += (target, cancelable) => { if (stopWatch.ElapsedMilliseconds < 1000 && stopWatch.IsRunning) { return; } var obj = ObjectManager.GetObjectByGuid(target); if (obj.IsValid && (obj.Type == WoWObjectType.Unit || obj.Type == WoWObjectType.GameObject)) { var isLootable = false; if (obj.Type == WoWObjectType.Unit) { var unit = new WoWUnit(obj.GetBaseAddress); isLootable = unit.IsLootable; } else if (obj.Type == WoWObjectType.GameObject) { isLootable = true; } if (isLootable) { stopWatch.Restart(); Interact.InteractGameObject(obj.GetBaseAddress); cancelable.Cancel = true; } } }; } public void Dispose() { } public void Settings() { } } Main.cs 1.4 kB · 0 downloads WoW you are a HERO ! that works they loot all items ❤️ love you 😄 and if you can solve the skill problem you would be insane 🙂
Create an account or sign in to comment