#define second_pause_script switch(show_message_ext('Pause','Resume','Save','Exit') ) {case 1: break; //does nothing case 2: switch(show_message_ext('Save a game','save1','save2','cancel') ) {case 1: game_save('save1'); break //saves the first saved game case 2: game_save('save2'); break //saves the second saved game case 3: break;} //does nothing break; //you may change this to your game file. keep the quotations('') case 3: game_end(); break} //ends the game