View difference between Paste ID: 2irRQeY7 and qArmbjSa
SHOW: | | - or go back to the newest paste.
1
"Export save" bookmarklet:
2
3
javascript:(function(){var x=$("<textarea/>");x.text(btoa(localStorage.gameState));$("body").prepend(x);var y=$("<input type=button value=hide>");y.click(function(){x.remove();y.remove()});x.after(y)})();
4
5-
Note: You have to use your mouse to right-click-select-all-copy, because the keyboard seems to be restricted in this game's page.
5+
Note: You have to use your mouse to right-click-select-all-copy, because the keyboard seems to be restricted in this page.
6
7
"Import save" bookmarklet:
8
9
javascript:(function(){var x=$("<textarea/>");$("body").prepend(x);var y=$("<input type=button value=load>");y.click(function(){localStorage.gameState=atob(x.val());location.reload()});x.after(y)})();