Uid.dat and Random.dat Overwriter (not deleter)
Overwrites uid.dat and random.dat in most possible places with a blank document.
You must have runescape closed or you'll get a file access error.
SCAR Code:
program New;
begin
ReWriteFile('C:\\Windows\.jagex_cache_32\random.dat',true);
ReWriteFile('C:\\Windows\.file_store_32\random.dat', true);
ReWriteFile('C:\\Windows\.file_store_32\uid.dat',true);
ReWriteFile('C:\\Windows\uid.dat',true);
ReWriteFile('C:\\Windows\random.dat',true);
ReWriteFile('C:\\uid.dat',true);
ReWriteFile('C:\\random.dat',true);
ReWriteFile('C:\\Current Login Name Here\uid.dat',true);
ReWriteFile('C:\\Current Login Name Here\random.dat',true);
ReWriteFile('C:\\Program Files\Mozilla Firefox\uid.dat',true);
ReWriteFile('C:\\Program Files\Mozilla Firefox\random.dat',true);
ReWriteFile('C:\\RSCache\uid.dat',true);
ReWriteFile('C:\\RSCache\random.dat',true); //Thanks for pointing that out JuKKa
end.
Dunno if this will help anybody - I just made it in two seconds for personal use and decided to post it here. BTW, you have to allow it to access some of your files (just to delete the uid.dat and random.dat).
This actually rewrites it, not deletes it (put wrong thing in title).