There is a way to add exit with a back button but you need to hold a use key or any key command start with +
To exit or return to the old menu depends on your menu order
For example
PHP Code:
menu_setprop(menuid, MPROP_EXIT_NAME, "RETURN ^n/
\rE0. \wExit")
public menuhandle(id, menu , item)
{
if(item == MENU_EXIT && get_user_button(id) & IN_USE) // EXITING THE MENU
else if(item == MENU_EXIT) // Return old menu
You probably need to check if user is still holding the key also
__________________