コード例 #1
0
ファイル: Menu.cs プロジェクト: Galenika/ZBase-CSGO
        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
            }
        }
コード例 #2
0
 private static void BunnyhopThread()
 {
     while (true)
     {
         Bunnyhop.Run();
         Thread.Sleep(1);
     }
 }
コード例 #3
0
ファイル: Menu.cs プロジェクト: waifuNET/NEThack
        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
            }
        }