snowy_yt
Banned
- Регистрация
- 29 Апр 2020
- Сообщения
- 25
- Тема Автор
- #1
Обратите внимание, пользователь заблокирован на форуме.
Dear coder i been cheating for alot of years and i see that u have not added shot delay why? shot delay is very good when your in a battle see if you dont add shot delay it will shot other cheat aa even otc the mostly enemy aa will peek first than their real body so i have coded this shot delay and if it work can u add in ur cheat if ur lazy just let me the coder at this point
- void Fire(void)
- {
- INPUT Input = { 0 };
- if (!GetAsyncKeyState(MouseButton) && GetAsyncKeyState(InGameFireKey))
- {
- //Release Fire Key
- ZeroMemory(&Input, sizeof(INPUT));
- WORD vkey = InGameFireKey;
- Input.type = INPUT_KEYBOARD;
- Input.ki.wScan = MapVirtualKey(vkey, MAPVK_VK_TO_VSC);
- Input.ki.time = 0;
- Input.ki.dwExtraInfo = 0;
- Input.ki.wVk = vkey;
- Input.ki.dwFlags = KEYEVENTF_KEYUP | KEYEVENTF_SCANCODE;
- SendInput(1, &Input, sizeof(INPUT));
- }
- if (GetAsyncKeyState(MouseButton) && !GetAsyncKeyState(InGameFireKey))
- {
- //Press Fire Key
- ZeroMemory(&Input, sizeof(INPUT));
- WORD vkey = InGameFireKey;
- Input.type = INPUT_KEYBOARD;
- Input.ki.wScan = MapVirtualKey(vkey, MAPVK_VK_TO_VSC);
- Input.ki.time = 0;
- Input.ki.dwExtraInfo = 0;
- Input.ki.wVk = vkey;
- Input.ki.dwFlags = KEYEVENTF_SCANCODE;
- SendInput(1, &Input, sizeof(INPUT));
- }
- }
Последнее редактирование: