Save-Point
Save Points Tutorial - Printable Version

+- Save-Point (https://www.save-point.org)
+-- Forum: Games Development (https://www.save-point.org/forum-4.html)
+--- Forum: Tutorials (https://www.save-point.org/forum-19.html)
+--- Thread: Save Points Tutorial (/thread-2655.html)



Save Points Tutorial - Hebi Kumo - 11-08-2006

Save Points

Introduction

This is an easy one, but just in-case you can't get it to work we here at RMXP Forums are ready to help. So making a save point is easy, and adds more to your game then the default save system in RMXP.

Saving The Game

Right now RMXP is set up to save a game by means of the Game Menu. If the save is active it will be filled in; not in use it will be faded out (or gray). To turn the Default Save system off in your very first event ( like say the beginning of your introduction) have the event do the following:

1) From the Event Command Window click ALLOW/DISALLOW SAVING button. make sure the DISALLOW is checked then click OK.

Now the Save has been disabled from the game menu.

Setting Up The Save Point

Note: Unlike my other tutorials this one will go step by step (though my other tuts do as well) and by following what I say you will have created your first Save Point.

1) Right Click on your mouse where you want the save point to be. Then where it says GRAPHIC click it (click the box below the word GRAPHIC).

2) Pick the 048-Fairy 01 and then click OK.

3) Now click the <> in the large white box to your right. The EVENT COMMAND window will pop up.

4) Now click the MESSAGE button and type: “Do You Wish To Save Your Progress?” (type it with out the “ ”) then click OK.

5) Now click the SHOW CHOICES button and then click OK.

6) Now right below the [YES] HANDLER click the <>

7) Click TAB NUMBER 3 in the event command window and then click the OPEN SAVE MENU button.

8) Now right below the [NO] HANDLER click the <>

9) Click TAB NUMBER 1 and then click END EVENT PROCESSING then click OK.

And now you have just made a simple save point.

---Lord Rasler