Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(+1)
Ah — progress is saved in localStorage, not cookies, so clearing cookies won't wipe it. A proper "Reset Game" button is coming in the next patch. For now (you'll like this one ๐Ÿ˜„): open the console with F12 and run localStorage.clear(), then reload — fresh start.
(1 edit)

Oooh :)
This looks potentially exploitable... :D

Maybe late game, you need to localstorage.setitem("something") or .getitem("something") to unlock something in the game? :D


I tried running the command, it returned "undefined", and it the progress is still saved. ?

(1 edit) (+1)

Ha — you're right that the save's just sitting in localStorage to poke at. For a hacking game I'll take that as on-brand. ๐Ÿ™ƒ

The localStorage.clear() returning "undefined" is actually normal — clear() just returns nothing, so that means it ran. The reason your progress survived: on itch the game runs in an iframe, so the console executed against itch's page, not the game's frame (different storage bucket). Switch the console's context to the game iframe (frame dropdown at the top of the Console tab), or run it on a downloaded copy, and it'll wipe.