:: Save Info [script] config.errors.savesNotAllowed = "Saving is not allowed on this passage. Please go to a normal story passage and try again."; config.saves.id = "the-masculine-mystique-pt1"; config.saves.autosave = "bookmark"; // Optional. config.saves.isAllowed = function () { return !tags().contains("nosave"); }; // Required. Rejects saves with incompatible $version values. config.saves.onLoad = function (save) { // Part 1 saves version check if (save.id === "the-masculine-mystique-pt1") { var storyVersion = state.active.variables["version"], saveVersion = save.state.history[save.state.history.length - 1].variables["version"]; if (saveVersion !== storyVersion) { return "Save version is incompatible with the current story version."; } } return null; };