March 6, 20215 yr can anyone share Wotlk Plugin that leaves Strand of the Ancients BG only please ❤️***** Edited March 7, 20215 yr by nutlol i typed IOC BG by mistake
March 6, 20215 yr 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."); } }
Create an account or sign in to comment