Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

mesal

6
Posts
1
Following
A member registered Nov 20, 2021 · View creator page →

Recent community posts

and just by updating, all is well <3<3

so sorry for the delayed response! yes, i'm using 2.3.11 LOL, so i guess that's why the error is showing up... time i updated :| thank you SO MUCH for the help <3

don't apologize—you're taking time out to help me on this issue, so thank you <3 here's the autosave + name save JS (if you need more, then i can send you the full file as well):

// autosaves - tag passage 'autosave' to trigger saving

config.saves.autosave = true;

config.saves.isAllowed = function () {

if (tags().includes('noreturn')) {

return false;

}

return true;

};

// end autosaves

// name saves - allows players to change name of save file

Config.saves.onSave = function (save, details) {

if (settings.autoname) {

save.title = State.getVar("$chapter");

} else if (details.type == "autosave") {

save.title = "Autosave";

} else {

save.title = prompt("Enter Save Name:", save.title);

}

}

// end name saves

of course! this is the error i get when, after turning "autoname saves" off in settings, i try to save whichever page i happen to be on:

that's alright, no worries! i'm rooting for you <3

thank u so much for this template! <3 i've been playing around with it recently, and i noticed that when i turn "autoname saves" off, the game give me an error every time i try to proceed (and also does not give me the option to name my own saves). any idea how that could be fixed / whether it's an issue on my end? i haven't messed with the saves javascript, but you never know...