Vo1k 0 Posted March 1, 2020 Share Posted March 1, 2020 how to stop bot when Game master Mind Vision check ? its serius danger to get banned( Link to comment https://wrobot.eu/forums/topic/11911-how-to-stop-bot-when-game-master-mind-vision-check/ Share on other sites More sharing options...
Ordush 185 Posted March 1, 2020 Share Posted March 1, 2020 9 hours ago, Vo1k said: how to stop bot when Game master Mind Vision check ? its serius danger to get banned( Make the bot stop if you have the buff mind vision Link to comment https://wrobot.eu/forums/topic/11911-how-to-stop-bot-when-game-master-mind-vision-check/#findComment-56960 Share on other sites More sharing options...
Vo1k 0 Posted March 1, 2020 Author Share Posted March 1, 2020 1 hour ago, Ordush said: Make the bot stop if you have the buff mind vision Please explain how do this make Link to comment https://wrobot.eu/forums/topic/11911-how-to-stop-bot-when-game-master-mind-vision-check/#findComment-56961 Share on other sites More sharing options...
Ordush 185 Posted March 2, 2020 Share Posted March 2, 2020 22 hours ago, Vo1k said: Please explain how do this make If (ObjectManager.Me.HaveBuff("Mind Vision")) Products.InPause = true; Link to comment https://wrobot.eu/forums/topic/11911-how-to-stop-bot-when-game-master-mind-vision-check/#findComment-56967 Share on other sites More sharing options...
Vo1k 0 Posted March 2, 2020 Author Share Posted March 2, 2020 3 hours ago, Ordush said: If (ObjectManager.Me.HaveBuff("Mind Vision")) Products.InPause = true; what me to do with this ?? Link to comment https://wrobot.eu/forums/topic/11911-how-to-stop-bot-when-game-master-mind-vision-check/#findComment-56969 Share on other sites More sharing options...
Vo1k 0 Posted April 22, 2020 Author Share Posted April 22, 2020 hello help me. what me to do with this code ?? Mind Vision check its serius danger to get banned !! If (ObjectManager.Me.HaveBuff("Mind Vision")) Products.InPause = true; Link to comment https://wrobot.eu/forums/topic/11911-how-to-stop-bot-when-game-master-mind-vision-check/#findComment-57792 Share on other sites More sharing options...
TheSmokie 242 Posted April 22, 2020 Share Posted April 22, 2020 Hello, this should work as a plugin .cs file. using robotManager.Products; using wManager.Plugin; using wManager.Wow.ObjectManager; using System.Threading; public class Main : IPlugin { bool running; public void Initialize() { running = true; if(ObjectManager.Me.HaveBuff("Mind Vision")) { Products.InPause = true; } Thread.Sleep(500); } public void Dispose() { running = false; } public void Settings() { } } Link to comment https://wrobot.eu/forums/topic/11911-how-to-stop-bot-when-game-master-mind-vision-check/#findComment-57794 Share on other sites More sharing options...
Vo1k 0 Posted May 15, 2020 Author Share Posted May 15, 2020 this plugin not working ( bot auto dont stop when GM put mynd vision on my character Link to comment https://wrobot.eu/forums/topic/11911-how-to-stop-bot-when-game-master-mind-vision-check/#findComment-58214 Share on other sites More sharing options...
Matenia 628 Posted May 15, 2020 Share Posted May 15, 2020 Of course not, because there is no while loop to check IsRunning Link to comment https://wrobot.eu/forums/topic/11911-how-to-stop-bot-when-game-master-mind-vision-check/#findComment-58215 Share on other sites More sharing options...
Vo1k 0 Posted May 15, 2020 Author Share Posted May 15, 2020 i get another plugin and modify him working !! using System; using System.Threading; using robotManager.Helpful; using robotManager.Products; using wManager.Plugin; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; using Timer = robotManager.Helpful.Timer; public class Main : IPlugin { private bool _isLaunched; public void Initialize() { _isLaunched = true; var t = new Timer(1000 * 1); // 1 sec while (_isLaunched && Products.IsStarted) { try { if (t.IsReady && Conditions.InGameAndConnectedAndProductStartedNotInPause) { t.Reset(); if(ObjectManager.Me.HaveBuff("Mind Vision")) { Products.ProductStop(); // or close: Environment.Exit(0); Logging.Write("Mind vision."); } } } catch (Exception e) { Logging.WriteError("[Mind vision]: " + e); } Thread.Sleep(150); } } public void Dispose() { _isLaunched = false; } public void Settings() { } } Link to comment https://wrobot.eu/forums/topic/11911-how-to-stop-bot-when-game-master-mind-vision-check/#findComment-58216 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