nutlol 0 Posted March 6, 2021 Share Posted March 6, 2021 (edited) can anyone share Wotlk Plugin that leaves Strand of the Ancients BG only please ❤️***** Edited March 7, 2021 by nutlol i typed IOC BG by mistake Link to comment Share on other sites More sharing options...
Sye 1 Posted March 6, 2021 Share Posted March 6, 2021 using System; using System.Threading; using robotManager.Helpful; using wManager.Plugin; using wManager.Wow.Enums; using wManager.Wow.Helpers; public class Main :IPlugin { bool _Loading; private ContinentId ContinentZone = (ContinentId)Usefuls.ContinentId; public void Initialize() { _Loading = true; if(_Loading) { try { while(Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause) { if(ContinentZone == ContinentId.IsleofConquest) { Battleground.ExitBattleGround(); } Thread.Sleep(Usefuls.Latency + 250); } } catch (Exception e) { Logging.Write("error : " + e); } } } public void Dispose() { _Loading = false; } public void Settings() { Logging.Write("There are no settings."); } } Link to comment 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