Welcome to Metin2Resources

Join us now to get access to all our features. Once registered and logged in, you will be able to create topics, post replies to existing threads, give reputation to your fellow members, get your own private messenger, and so, so much more. It's also quick and totally free, so what are you waiting for?

Coordinates

africanu

Member
Joined
Jul 23, 2025
Messages
30
Reaction score
1
Points
8
Discord
afr1canu
import pyautogui
import time

print("Move the cursor where you want and press CTRL + C to stop.\n")
time.sleep(2)

try:
while True:
x, y = pyautogui.position()
position_str = f"X: {x} | Y: {y}"
print(position_str, end='\r') # overwrite on the same line
time.sleep(0.1)
except KeyboardInterrupt:
print("\nThe final coordinates have been copied.")
 
Last edited:

Latest posts

484Threads
921Messages
192Members
Stefann01Latest member
Back
Top