Adventure Game Studio

AGS Support => Beginners' Technical Questions => Topic started by: BlackMan890 on Tue 17/08/2004 13:11:29

Title: save, load and dialog screen?
Post by: BlackMan890 on Tue 17/08/2004 13:11:29
How do i change the save screen or load screen or dialog screen?
Title: Re: save, load and dialog screen?
Post by: TheJBurger on Tue 17/08/2004 19:02:33
I'm assuming you're talking about the default Save Screen... So...
First make another GUI with a list box, Cancel Button, and some other stuff (I don't really want to get into the whole tutorial of making a save/load GUI)

Then in your global script where it says

if (keycode==363) SaveGameDialog();   // F5

Change the "SaveGameDialog();"
to GUIOn(*);

*=The GUI Number of your save game GUI.

Then when you press F5 in the game, instead of the default save editor coming up, you should be sent to your own Save GUI.

I hope this helps.
Title: Re: save, load and dialog screen?
Post by: Darth Mandarb on Tue 17/08/2004 20:01:12
Did you try searching the forums?

Custom Save/Load GUI (http://atticwindow.adventuredevelopers.com/tutorials.php?id=1) over at the GAC.

And this inconspicuously titled thread, *** READ THIS THREAD FIRST BEFORE ANYTHING ELSE (http://www.agsforums.com/yabb/index.php?topic=14373.0) ***, has resources for these kinds of questions.
Title: Re: save, load and dialog screen?
Post by: TerranRich on Wed 18/08/2004 03:40:31
Indeed.