public BotClient() { AccountManager = new AccountManager("Accounts"); PokemonEvolver = new PokemonEvolver(this); MoveTeacher = new MoveTeacher(this); StaffAvoider = new StaffAvoider(this); AutoReconnector = new AutoReconnector(this); MovementResynchronizer = new MovementResynchronizer(this); Rand = new Random(); }
public BotClient() { AccountManager = new AccountManager("Accounts"); PokemonEvolver = new PokemonEvolver(this); MoveTeacher = new MoveTeacher(this); StaffAvoider = new StaffAvoider(this); AutoReconnector = new AutoReconnector(this); MovementResynchronizer = new MovementResynchronizer(this); Rand = new Random(); SliderOptions = new Dictionary <int, OptionSlider>(); TextOptions = new Dictionary <int, TextOption>(); }
public BotClient() { AccountManager = new AccountManager("Accounts"); PokemonEvolver = new PokemonEvolver(this); MoveTeacher = new MoveTeacher(this); StaffAvoider = new StaffAvoider(this); AutoReconnector = new AutoReconnector(this); IsTrainerBattlesActive = new IsTrainerBattlesActive(this); MovementResynchronizer = new MovementResynchronizer(this); Rand = new Random(); SliderOptions = new Dictionary <int, OptionSlider>(); TextOptions = new Dictionary <int, TextOption>(); countGMTele = 0; CallingPaueScript = false; }
public BotClient() { AccountManager = new AccountManager("Accounts"); PokemonEvolver = new PokemonEvolver(this); MoveTeacher = new MoveTeacher(this); StaffAvoider = new StaffAvoider(this); AutoReconnector = new AutoReconnector(this); MovementResynchronizer = new MovementResynchronizer(this); Rand = new Random(); Options = new OptionSlider[] { new OptionSlider("Option 1: ", "Custom option 1 for use in scripts", 1), new OptionSlider("Option 2: ", "Custom option 2 for use in scripts", 2), new OptionSlider("Option 3: ", "Custom option 3 for use in scripts", 3), new OptionSlider("Option 4: ", "Custom option 4 for use in scripts", 4), new OptionSlider("Option 5: ", "Custom option 5 for use in scripts", 5) }; }
public BotClient(string xmlFile = "") { PokemonEvolver = new PokemonEvolver(this); MoveTeacher = new MoveTeacher(this); StaffAvoider = new StaffAvoider(this); AutoReconnector = new AutoReconnector(this); IsTrainerBattlesActive = new IsTrainerBattlesActive(this); MovementResynchronizer = new MovementResynchronizer(this); Rand = new Random(); SliderOptions = new Dictionary <int, OptionSlider>(); TextOptions = new Dictionary <int, TextOption>(); countGMTele = 0; CallingPaueScript = false; messageProcess = false; BeAwareOfStaff = false; NeedResync = false; StartScriptInstant = false; LanguageXmlFile = ""; if (!string.IsNullOrEmpty(xmlFile)) { LanguageXmlFile = xmlFile; } }