Since my wip is almost ready for release I want to upload it on itch.io couldn’t find any save feature like dashingdon used to had, is there a way to add it in the game ?
Refer to this guide below. You will just need to download a file and make a few changes to one of the existing html files.
Thank you, this was very useful.
I’m having error saying the plugin has been disabled for not having store name, but I’ve already named it
Could you take screenshots of the lines of code you changed in the html file, as well as the error message in question?
Otherwise, it’s a bug I’m not familiar with, and you’ll need to tag CJW.
Edit:
@DaoImmerser try putting daoascension in double quotes.
window.storeName = "daoascension"
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name = "viewport" content = "width = device-width, initial-scale = 1.0, maximum-scale = 1.0">
<!-- INSERT correct meta values -->
<!-- <title>Multiple Choice Example Game | My First ChoiceScript Game</title> -->
<script>window.version="UNKNOWN"</script>
<script src="version.js"></script>
<script src="../persist.js"></script>
<script src="../alertify.min.js"></script>
<script src="../util.js"></script>
<link href="../style.css" rel="stylesheet" type="text/css">
<style id="dynamic"></style>
<script src="../ui.js"></script>
<script src="../scene.js"></script>
<script src="../navigator.js"></script>
<script src="../ChoiceScriptSavePlugin.js"></script>
<script src="mygame.js"></script>
<link href="../alertify.css" rel="stylesheet" type="text/css">
<!--[if IE 6]><style>.alertify-logs { position: absolute; }</style><![endif]-->
<meta name="apple-mobile-web-app-capable" content="yes" />
<script>
// INSERT store name; disabled by default because it's confusing for newbie authors
window.storeName = daoascension;
//Scene.generatedFast = true;
var rootDir = "../";
</script>
</head>
This is where I edited added that save plugin
Disabling ChoiceScript Save Plugin as there is no storeName detected. Please check your index.html.
And this is the error I’m talking about
Thank you very much, this solved the error, and also thank you for the earlier support, it’s much appreciated.
I would recommend you try seeing if using the official checkpoint support suits your needs first. There might still be a use-case for the save mod but people should start using official support where possible.
This topic was automatically closed 24 hours after the last reply. If you want to reopen your WiP, contact the moderators.