forum

Update/Process all replays stored in data\r [assigned]

posted
Total Posts
5
This is a feature request. Feature requests can be voted up by supporters.
Current Priority: +0
Topic Starter
theowest
Many of which were saved in local rankings but for some reason likes to disappear. Is there a limit to exporting saved replays? The actual replay exist, why can't it stay on the beatmap?

A button for this in the options I guess. Press it and you'd see your replays getting processed/updated.
Soaprman
This is more of a bug than a feature request, perhaps. See this; it or something like it might have affected you, too: t/94369/hilit=local

If you want, you can run this (save it as a .vbs file) to do the process by opening each file in the directory. This may take several minutes (I have about 3300 replays and it took about eight minutes) and osu! will be a black screen for most of it. Remember to change the paths... you can also change it to the \Replays folder to work from there.

Replays to maps that have since been updated will obviously not work correctly.

Use it at your own risk. :P

dim oFileSystem, oFile, sOsuExePath, oReplayFolder, oShell

set oFileSystem = CreateObject("Scripting.FileSystemObject")
sOsuExePath = """C:\Program Files (x86)\osu!\osu!.exe"""
set oReplayFolder = oFileSystem.GetFolder("C:\Program Files (x86)\osu!\Data\r")
set oShell = WScript.CreateObject("WScript.Shell")

for each oFile in oReplayFolder.Files
if right(oFile.Path,4) = ".osr" then
oShell.Run(sOsuExePath + " " + oFile.Path)
WScript.Sleep 100
end if
next
peppy
There is/was a limit, which can probably be removed now.
Topic Starter
theowest
I'm glad to hear that! :)
Topic Starter
theowest
I've been seeing a lot of my older saved replays coming back. Fixed the limit?
Please sign in to reply.

New reply