Jump to content
ChimkinTheGamer

Delete save file from in game

Recommended Posts

I want to make an anti cheat thing in my game where if you are in game outside of your home without your dog you get a message and your save file is wiped. Anyone know if this is possible without scripting? If not I'll just set them at your home at lvl 1 with nothing. No money, no armor, no weapon.

Share this post


Link to post
Share on other sites

I can be done by eventing using a script command.

But you have to delete all save files if you were to make sure to remove the one the player is using since you can save in multiple slots.

Untested, but this is the command I use in a script.

DataManager.delete_save_file(1) if DataManager.save_file_exists?

 

  • Like 1

Share this post


Link to post
Share on other sites
2 hours ago, roninator2 said:

I can be done by eventing using a script command.

But you have to delete all save files if you were to make sure to remove the one the player is using since you can save in multiple slots.

Untested, but this is the command I use in a script.


DataManager.delete_save_file(1) if DataManager.save_file_exists?

 

I wanted to avoid scripts, as I want to do most everything on my own.

Share this post


Link to post
Share on other sites

Event command -> script

Put the line in and see?

I just tried it and it worked fine.

Just have to remember 

DataManager.delete_save_file(0) if DataManager.save_file_exists?

is for savefile01.

image.png.1d9e95cc897378394a640c9cdb870d04.png

Edited by roninator2
  • Like 1

Share this post


Link to post
Share on other sites

No, you will have to set up a loop for that like this:

if DataManager.save_file_exists?
  (0..15).each do |i|
    DataManager.delete_save_file(i)
  end
end

(also 0..15 is a Range not an Array, but close enough)

  • Like 1

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

  • Recently Browsing   0 members

    No registered users viewing this page.

×
Top ArrowTop Arrow Highlighted