-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuff.py
37 lines (30 loc) · 859 Bytes
/
buff.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import pyautogui as ptg
import time
def buff():
tempo = 0
limite = 1
buff = 'shift'
if tempo != 1:
ptg.click(x=473, y=95)
ptg.click(x=673, y=504)
ptg.click(x=722, y=349)
while tempo < limite:
ptg.keyDown(buff)
ptg.press('left')
ptg.keyUp(buff)
time.sleep(2)
tempo += 1
ptg.click(x=472, y=144)
ptg.click(x=673, y=504)
ptg.click(x=722, y=349)
ptg.keyDown(buff)
ptg.press('left')
ptg.keyUp(buff)
time.sleep(2.5)
ptg.click(x=234, y=60)
ptg.click(x=175, y=182)
ptg.click(x=673, y=504)
ptg.click(x=722, y=349)
ptg.click(x=304, y=58)
if __name__ == '__main__':
buff()