Move2 0 Posted July 14 Share Posted July 14 Hey there , someone can give me a favor and write a plugin that close game/bot after a few minutes that bot can't reach to corpse ? for 3.3.5 Link to comment https://wrobot.eu/forums/topic/15502-request-plugin-close-botclient-after-x-minutes-when-character-cant-reach-corpse/ Share on other sites More sharing options...
Droidz 2738 Posted July 15 Share Posted July 15 Hello, using System.Threading; using robotManager.Helpful; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { private bool _isStarted; public void Initialize() { _isStarted = true; var stopWatch = new System.Diagnostics.Stopwatch(); while (_isStarted) { if (Conditions.InGameAndConnectedAndProductStartedNotInPause) { if (ObjectManager.Me.IsDeadMe && stopWatch.Elapsed.TotalMinutes > 5) { Logging.Write("Bot is dead for more than 5 minutes, closing game."); wManager.Wow.Memory.WowMemory.CloseHookedProcess(); _isStarted = false; } else if (ObjectManager.Me.IsDeadMe) { stopWatch.Start(); } else { stopWatch.Reset(); } } Thread.Sleep(500); } } public void Dispose() { _isStarted = false; } public void Settings() { } } Move2 1 Link to comment https://wrobot.eu/forums/topic/15502-request-plugin-close-botclient-after-x-minutes-when-character-cant-reach-corpse/#findComment-69472 Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now