Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- sw = 0;
- ToolTip, Скрипт запущен. Включение/Выключение производится по клавише F4 ,50, 100
- SetTimer, RemoveToolTip, -2000
- F4::
- if (sw = 0)
- {
- ToolTip, Script ON ,50, 100
- SetTimer, RemoveToolTip, -2000
- sw = 1
- }
- else
- {
- ToolTip, Script OFF ,50, 100
- SetTimer, RemoveToolTip, -2000
- sw = 0
- }
- return
- ~$LButton::
- if (sw = 1)
- {
- SetTimer, Shoot, 0
- }
- return
- ~$LButton Up::
- if (sw = 1)
- {
- SetTimer, Shoot, Off
- }
- return
- -------------------------------------
- RemoveToolTip: ;Удаление подсказки
- ToolTip
- return
- Shoot:
- mouseXY(3,3)
- Sleep, 8
- mouseXY(3,-3)
- Sleep, 8
- mouseXY(-3 ,-3)
- Sleep, 8
- mouseXY(-3 ,3)
- Sleep, 8
- Return
- mouseXY(x,y)
- {
- DllCall("mouse_event",uint,1,int,x,int,y,uint,0,int,0)
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement