I am currently trying to make a basic save/load system that creates a unique save file for each character, which is named (actor name).save, and then on the loading screen, brings up all character files. located via the .save extension. I have successfully written the saving portion, but I am stuck on the loading portion. I can't seem to find a way for the script to just look for .save and not a file header as well. Here's a better example:
The default File, Save, and Load scripts deal with this:
return "Save#{file_index + 1}.rxdata"
I want to have them search for just the extension, the .rxdata, of the files, not the header as well. Something like:
return ".rxdata"
But that doesn't work, I tried.
I've searched through several RGSS guides, including the ones that come with the program, but nothing has told me how to do this. If anyone could help, I'd appreciate it. It's probably really easy, but I've been at it for the past few hours and its midnight now, so my brain is shot.