Removing the save functionality

Hi, Is there any way to remove the save button in sugarcube. I need to implement it so that people won’t save it. I know it’s available in Harlowe but I don’t wanna change to that story format.

1 Like

To remove the standard Sugarcube saves button, put the following in your story stylesheet:

#menu-item-saves {
    display: none;
  }

You may also want to hide the forward/backwards buttons, as they let a player circumvent the lack of saving functionality. To do so, in your story stylesheet:

#ui-bar-history {
    display: none;
  }
1 Like

Thanks a lot!!!