This script automates the task of drawing shapes on the neal.fun circle game. It consistently achieves high scores by drawing specific shapes, particularly triangles.
pyautogui
modulekeyboard
modulepip install pyautogui keyboard
python perfect circle.py
During testing, it was observed that the triangle shape consistently achieves a near-perfect score in the game. This might seem counterintuitive, as a triangle is far from a circle. However, the game's scoring mechanism seems to prioritize the completion of shapes, the overlap of the starting and ending points, and possibly the total path length of the drawn shape. The triangle, being a simpler shape with fewer vertices, might meet these criteria more effectively than more complex shapes, leading to a higher score. This behavior highlights the quirks and unexpected behaviors in the game's scoring mechanism.
This project is open source and available under the MIT License.