Well, I've skimmed the help, and the knowledge base just won't work on my computer, so I've come here. Is there any way that I can make it so that pressing F5 calls up the save dialog throughout the entire game, without having to put the script into every individual room? I know how to script it, but not how to make it happen in every room. Help?
It already is like that and if not put this in the global script
function on_key_press(int keycode) {
if (keycode==363) SaveGameDialog(); //f5
}
Oh, really? Heh heh heh... thanks.