Opening 50 cash eggs
5 years 11 months ago #1115007
Thanks zarp, very cool!
Here's the code if you wanna use it yourself, done in python bc it's quick
from pynput.keyboard import Key, Controller as KeyboardController
from pynput.mouse import Button, Controller as MouseController
mouse = MouseController()
keyboard = KeyboardController()
import time
time.sleep(2)
for x in range(0,50):
mouse.position = (938,850)
time.sleep(3)
mouse.position = (921,1038)
time.sleep(5)