Example #1
0
        public Main()
        {
            InitializeComponent();
            KeyBoardHooking();
            setupMenus();
            listMenu.DataSource = listBoxEntrys;
            //Steam
            h = new Hacks("GTA5", "GTA5.exe", false);

            //SC
            //h = new Hacks("GTA5", "GTA5.exe", true);
        }
Example #2
0
        public IntPtr GetProcessHandle()
        {
            try
            {
                pHandle = proc.Handle;

                return(pHandle);
            }
            catch
            {
                Hacks.IsGameRunning();
                return(IntPtr.Zero);
            }
        }
Example #3
0
        public Main()
        {
            InitializeComponent();
            KeyBoardHooking();
            setupMenus();
            listMenu.DataSource = listBoxEntrys;
            //Steam
            h = new Hacks("GTA5", "GTA5.exe", false, this);

            //SC
            //h = new Hacks("GTA5", "GTA5.exe", true, this);

            this.StartPosition = FormStartPosition.Manual;
            this.Location      = new Point(50, 50);
            setColor(colorList[colorIndex]);
        }
Example #4
0
        public Main()
        {
            string ver = "b0.2.86";

            InitializeComponent();
            KeyBoardHooking();
            setupMenus();
            listMenu.DataSource = listBoxEntrys;
            //Steam
            h = new Hacks("GTA5", "GTA5.exe", false, this);

            //SC
            //h = new Hacks("GTA5", "GTA5.exe", true, this);

            this.StartPosition = FormStartPosition.Manual;
            this.Location      = new Point(50, 50);
            setColor(colorList[colorIndex]);

            this.TopMost = true;

            label1.Text = "Complexicon's External " + ver;
        }
Example #5
0
 public void onExit(object sender, System.EventArgs e)
 {
     Hacks.IsGameRunning();
 }
Example #6
0
 protected override void OnLoad(EventArgs e)
 {
     Hacks.IsGameRunning();
 }