i need either a small script or an eventing process to delete a save file when hackers are cheating.
Basically it's for those little unreachable places we put into the game to see if people are willing to hack to get to it, i need something to delete the save file for after the event has gone through.
If it ends up a small script, could you please use the script call, thx.
(And Yes i did just get ace)
Edit: am i missing required information?
Dir.glob("Save*").each do |f|
File.delete(f)
end
This works!