Skip to content

Instantly share code, notes, and snippets.

@newtykip
Last active January 26, 2023 13:11
Show Gist options
  • Save newtykip/40bee3e4421d4ab2db12ffa9484b341f to your computer and use it in GitHub Desktop.
Save newtykip/40bee3e4421d4ab2db12ffa9484b341f to your computer and use it in GitHub Desktop.
Bulk import osu! replays
@echo off
@tasklist /nh /fi "imagename eq osu!.exe" | find /i "osu!.exe" > nul || "osu!.exe"
for %%x in (%userprofile%\AppData\Local\osu!\Data\r\*.osr) do (
start %%x
timeout /t 1 /nobreak >nul
)
@newtykip
Copy link
Author

This script iterates through all of the currently signed-in user's osu replays and opens them, registering them in your local scoreboards! This is useful if you accidentally click "delete all unranked maps" and it clears all of your local leaderboards - I had this issue, and it is why I made this script. I hope it helps someone! <3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment