get one'd
-
Автор темы
- #1
Я тупой, это всем понятно. Однако такому тупому человеку нужна помощь. Я нашел на одном форуме бхоп скрипт для всех игр (написанный на c++)
И так как я пастеризованный сок я хочу спросить, почему оно не работает?
(ахеренный пост, я сам в шоке)
И так как я пастеризованный сок я хочу спросить, почему оно не работает?
Код:
#include <iostream>
#include <windows.h>
using namespace std;
int main() {
start:
BYTE space = 0x20;
const int x = 2;
const int o = 0;
while (true) {
if (GetAsyncKeyState(VK_F1)) //Change This to whatever key you want except VK_SPACE || you can use VK_SPACE as a toggle on but not off
{
while (true) {
Sleep(20);//play around with this for other games// 20 is best for cs 1.6
keybd_event(space, MapVirtualKey(VK_SPACE, 0), o, 0);
keybd_event(space, MapVirtualKey(VK_SPACE, 0), x, 0);
if (GetKeyState(VK_F1)) //make sure this VK matches the first one if you want the same key to toggle on and off, but u dont have to
{
keybd_event(space, MapVirtualKey(VK_SPACE, 0), x, 0);
goto start;
}
}
}
}
}