I can refund you if you havent claimed the key. Could you share your email. no need for full but like first 5 letters so I can idetify it from the list
Mokaaja
Creator of
Recent community posts
You can have multiple saves. Go to manage saves and start new one. If you decided to transfer the browser data make sure you transfer it to fresh save (don't overwrite your current) You can then choose if you want to play both or maybe go for different builds. We are adding offline progress back at some point. So even just having it in there can be benefiicial
You are most likely using chrome. Chrome does not allow copying. There is a workaround in discord. I can copy it to here. (made by another player)
Hey! Just going to add two notes since my friend and I just did this. Found a fix for me, here is how (chatgpt answer)
- Open the game frame’s DevTools
Chrome blocks clipboard access only in the outer itch.io page, not inside the game frame. So you must open DevTools inside the game iframe: Go to the itch.io page. Scroll down to the actual game window. Right-click inside the game canvas → Inspect. DevTools opens, now inside the correct iframe. Go to the Console tab. You are in the right frame if this command shows game data: Object.keys(localStorage) If you see keys like: idleRPGSaveData_0 idleRPGAccountData → Perfect. If you see nothing → repeat Step 1 (wrong frame).
- Override the blocked Clipboard API
Paste this into the console: navigator.clipboard.writeText = (text) => { console.log("=== SAVE COPIED ==="); window.mySave = text; return Promise.resolve(); }; WHEN YOU TRY TO PASTE THE ABOVE COMMAND INTO THE CONSOLE, CHROME WILL PROMPT YOU TO TYPE "ALLOW PASTING" INTO THE CONSOLE. IF YOU DO NOT DO THIS, THE COMMAND WILL NOT WORK This replaces Chrome’s blocked clipboard with your own fake clipboard that cannot be blocked.
- Use the in-game “Export / Copy Save” button
Now click the normal Export/Copy button inside the game. The game will think the clipboard works and call navigator.clipboard.writeText(...), but the save will go into a variable instead. You should also see in the console: === SAVE COPIED ===
- Retrieve your save
In the console, type: window.mySave Press Enter → the full export save string appears. Now you can select it → Ctrl+C → done. WHEN YOU SEE YOUR SAVE (A BUNCH OF RANDOM-LOOKING LETTERS AND NUMBERS) IT WILL START WITH A ' AND END WITH A '. YOU MUST MANUALLY COPY EVERYTHING INSIDE THE TWO ' MARKS, IF YOU COPY THE SAVE WITH THEM, IT WILL NOT WORK This is the same save string the game normally copies to your clipboard (e.g. 913e6Iycl...).
Thanks for the feedback. We have really healthy prestige system in place based on thousands of players feedback. Game can be played without prestige at all (P0 mode). You can boost your stats by acquiring gems (farming mobs or buying gems from hunt/merchant/stationary shops) and insert the gems to your gear to make the progress faster. You can basically prestige every 50lvls if you so desire.
Sorry, was typing on phone. The save file should be under user
.../user/AppData\Roaming\idle-looter\Local Storage
there you should have folder called leveldb. Copy it and replace the folder in your home compuer. If you dont have this folder at your home computer, play the game a bit and close it. It should appier.
You can but it can be a hustle. If you have discord it can be easier to share infro and debug together but we can do it here as well. You need to nacigate to the folder that has your save file(s) and copy it. Start the game on the home and close the game. Navigate to the location and replace the folder. If theres no save yo uwont find the folder
Hey there! Thank you for your comment. I understand your concerns. The goal was to balance the game in that way that you would not only progress the game because of the potion.
To balance the nerf we introduced weak point that gives massive boost to your damage. Now you don't need to spend hunt points always to progress. You can try and see how the weak points feel in browser version as well


