Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- CoordMode, ToolTip, Screen ; отображение ToolTip'a относительно рабочего стола.
- sw = 0
- ToolTip, Script Started ,50, 100
- SetTimer, RemoveToolTip, -3000
- Hotkey, $LButton, Off ; отключение горячей клавиши
- F1::
- switch sw
- {
- case "0":
- {
- #Persistent
- ToolTip, Sniper ,50, 100
- SetTimer, RemoveToolTip, -2000
- sw = 1
- Hotkey, $LButton, On ; отключение горячей клавиши
- }
- case "1":
- {
- #Persistent
- ToolTip, Shotgun ,50, 100
- SetTimer, RemoveToolTip, -2000
- sw = 2
- }
- case "2":
- {
- ToolTip, Script OFF ,50, 100
- SetTimer, RemoveToolTip, -2000
- sw = 0
- Hotkey, $LButton, Off ; отключение горячей клавиши
- }
- }
- return
- $LButton::
- if (sw = 1)
- {
- ;ПКМ, ожидание 200мс, ЛКМ
- Click right
- Sleep 200
- Click
- }
- if (sw = 2)
- {
- ;ЛКМ: ожидание 200мс, ПКМ
- Sleep 200
- Click right
- }
- Return
- F2:: ExitApp
- -------------------------------------
- RemoveToolTip: ;удаление подсказки
- ToolTip
- return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement