Adventure Game Studio | Forums

AGS Support => Beginners' Technical Questions => Topic started by: elalegreroger on Tue 09/04/2019 15:11:50

Title: Can i save and load always the same slot?
Post by: elalegreroger on Tue 09/04/2019 15:11:50
Hello everyone! i want to make a simply save/load GUI, to use just one button for save, one button to restart the game and other to load (the only game saved). Is that can be possible? Thanks.
Title: Re: Can i save and load always the same slot?
Post by: Khris on Tue 09/04/2019 15:42:08
Yes, easily. Just have the Save button click handler call  SaveGameSlot(1, "main");  and the Load button's call  RestoreGameSlot(1);.
Title: Re: Can i save and load always the same slot?
Post by: elalegreroger on Tue 09/04/2019 21:19:55
Thank you!!!!