Beispiel #1
0
        public Menu()
        {
            InitializeComponent();
            if (Main.RunStartup())
            {
                OffsetUpdater.UpdateOffsets();
                #region Start Threads
                // found the process and everything, lets start our cheats in a new thread
                new Thread(() =>
                {
                    Thread.CurrentThread.IsBackground = true;
                    CheckMenu();
                }).Start();

                new Thread(() =>
                {
                    Thread.CurrentThread.IsBackground = true;
                    Tools.InitializeGlobals();
                }).Start();

                new Thread(() =>
                {
                    Thread.CurrentThread.IsBackground = true;
                    Bunnyhop.Run();
                }).Start();

                Visuals v = new Visuals();
                #endregion
            }
        }
Beispiel #2
0
        // -- Form Events -- \\
        private void Form1_Load(object sender, EventArgs e)
        {
            OffsetUpdater ou = new OffsetUpdater();

            ou.RunUpdate();

            Master.Start();
            KeyLoop      = new Thread(() => KeyThread());
            KeyLoop.Name = "NpPP=> Key Event Handler";
            KeyLoop.Start();
        }
Beispiel #3
0
        public Menu()
        {
            InitializeComponent();

            if (Main.RunStartup())
            {
                OffsetUpdater.UpdateOffsets();
                #region Start Threads
                // found the process and everything, lets start our cheats in a new thread
                new Thread(() =>
                {
                    Thread.CurrentThread.IsBackground = true;
                    CheckMenu();
                }).Start();

                Tools.InitializeGlobals();

                new Thread(() =>
                {
                    Thread.CurrentThread.IsBackground = true;
                    Bunnyhop.Run();
                }).Start();

                new Thread(() =>
                {
                    Thread.CurrentThread.IsBackground = true;
                    Visuals v = new Visuals();
                    v.Initialize();
                    v.Run();
                }).Start();
                #endregion
                #region HACK
                new Thread(() =>
                {
                    Thread.CurrentThread.IsBackground = true;
                    AimBot.Aim();
                }).Start();

                new Thread(() =>
                {
                    Thread.CurrentThread.IsBackground = true;
                    SalentAim.Salent();
                }).Start();

                new Thread(() =>
                {
                    Thread.CurrentThread.IsBackground = true;
                    Waifu.Cheats.TriggerBot.triggerBot();
                }).Start();
                #endregion
            }
        }
Beispiel #4
0
        public Menu()
        {
            //AllocConsole();
            InitializeComponent();

            if (RunStartup())
            {
                OffsetUpdater.UpdateOffsets();
                #region Start Cheats

                new Thread(() =>
                {
                    Thread.CurrentThread.IsBackground = true;
                    CheckMenu();
                }).Start();
                new Thread(() =>
                {
                    Thread.CurrentThread.IsBackground = true;
                    Tools.InitializeGlobals();
                }).Start();
                /////////////////////////////////////////////////
                new Thread(() =>
                {
                    Thread.CurrentThread.IsBackground = true;
                    Bunnyhop.Start();
                }).Start();

                new Thread(() =>
                {
                    Thread.CurrentThread.IsBackground = true;
                    Triggerbot.Start();
                }).Start();

                new Thread(() =>
                {
                    Thread.CurrentThread.IsBackground = true;
                    Visuals.Start();
                }).Start();

                new Thread(() =>
                {
                    Thread.CurrentThread.IsBackground = true;
                    Misc.Start();
                }).Start();
                #endregion
            }
        }
Beispiel #5
0
        public MainF()
        {
            InitializeComponent();
            if (RunStartup())
            {
                OffsetUpdater.UpdateOffsets();
                new Thread(() =>
                {
                    Thread.CurrentThread.IsBackground = true;
                    CheckMenu();
                }).Start();

                new Thread(() =>
                {
                    Thread.CurrentThread.IsBackground = true;
                    Tools.InitializeGlobals();
                }).Start();
            }
        }