-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
46 lines (38 loc) · 1.15 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include <iostream>
#include "process.h"
#include "C:\Users\sickog0d\Desktop\FirstTrainer\InfiniteAmmo.cpp"
#include "C:\Users\sickog0d\Desktop\FirstTrainer\Visual.cpp"
#include "C:\Users\sickog0d\Desktop\FirstTrainer\Menu.cpp"
using namespace std;
int main(HWND hwnd)
{
ProgramVisual();
hwnd = FindWindow(NULL, "AssaultCube");
if(hwnd == NULL)
{
cout << "I didn't find the process." << endl;
system("pause");
} else {
MenuInfo(false);
bool InfiniteAmmoStatus = false;
while(1)
if(GetAsyncKeyState(VK_F1)) {
Sleep(200);
InfiniteAmmoStatus = !InfiniteAmmoStatus;
switch(InfiniteAmmoStatus)
{
case true:
MenuInfo(true);
InfiniteAmmo();
break;
case false:
MenuInfo(false);
break;
}
} else if(GetAsyncKeyState(VK_F11)) {
Sleep(200);
MessageBox(0, "Trainer has been closed.", "AssaultCube Hack", MB_OK);
system("pause");
}
}
}