- 05, Nov 2014
- #1
Сразу к делу:
Нам потребуется необходимый софт, качаем его
http://www.autohotkey.com/
Установите программу и оставьте ее, она нам больше не нужна.
Далее займемся созданием скрипта из готового кода.
Инструкция:
1. Запускаем CS:GO
2. Заходим на сервер
3. Запускаем скрипт
4. Играем.
Нам потребуется необходимый софт, качаем его
http://www.autohotkey.com/
Установите программу и оставьте ее, она нам больше не нужна.
Далее займемся созданием скрипта из готового кода.
#NoEnv
#InstallKeybdHook
#InstallMouseHook
~LButton:: ; while holding Left mouse button, usually fire
loop ; preform this and loop it while the fire button is held
{
GetKeyState,updn, LButton, P ; check to see if its down
if updn = U ; if its not down
break ; break the loop
MouseClick, left,,, 2, 0, D ; if the loop isnt broken this
MouseClick, left,,, 1, 0, U ; virtually send 2 downclicks then 1 up very fast
DllCall("mouse_event", uint, 1, int, 0, int, 1, uint, 0, int, 1) ; on the down click move the mouse position this much
}
#InstallKeybdHook
#InstallMouseHook
~LButton:: ; while holding Left mouse button, usually fire
loop ; preform this and loop it while the fire button is held
{
GetKeyState,updn, LButton, P ; check to see if its down
if updn = U ; if its not down
break ; break the loop
MouseClick, left,,, 2, 0, D ; if the loop isnt broken this
MouseClick, left,,, 1, 0, U ; virtually send 2 downclicks then 1 up very fast
DllCall("mouse_event", uint, 1, int, 0, int, 1, uint, 0, int, 1) ; on the down click move the mouse position this much
}
Инструкция:
1. Запускаем CS:GO
2. Заходим на сервер
3. Запускаем скрипт
4. Играем.