Skip to content

Instantly share code, notes, and snippets.

View jpmassari's full-sized avatar

jpmassari jpmassari

View GitHub Profile
@jpmassari
jpmassari / mouse_lerp
Created January 23, 2024 23:12
It might help avoid scrapping detection by the lack of mouse movement
import noise
import argparse
import numpy as np
import random
import ctypes
def __mouse_pos():
user32 = ctypes.windll.user32
point = ctypes.wintypes.POINT()
user32.GetCursorPos(ctypes.byref(point))