Page 1 of 1
How to delete account bound webtease progress?
Posted: Mon May 25, 2026 6:57 pm
by HappyToLose
Hello,
How do I delete account bound saved progress of webteases?
Deleting cookies (in browser settings as well as on Milovana per "Delete cookies") doesn't work and I didn't find any option to do so in my account settings.
Re: How to delete account bound webtease progress?
Posted: Mon May 25, 2026 8:18 pm
by kerkersklave
You basically can't. If you're logged in, tease save state is stored on the server. There is not UI for managing it, you'd need to figure out the API and do it with some javascript from the javascript console in the browser or something like that. If the tease as no UI for resetting, you can only download the json and make a copy of the tease for yourself in EOS.
Re: How to delete account bound webtease progress?
Posted: Mon May 25, 2026 8:46 pm
by edger477
Which tease? They almost all save their data under local storage in browser and I was able to find it there using developer tools and delete.
Re: How to delete account bound webtease progress?
Posted: Tue May 26, 2026 3:42 am
by lor205y
I see this stated a lot, but I think it might be a myth. I am always able to open a tease logged in on another device, and have my progress still there. I'm also always playing in a private tab so it shouldn't be able to save any local data.
Re: How to delete account bound webtease progress?
Posted: Tue May 26, 2026 9:34 am
by StellaRack
The data is fetched from the server by the account. Not sure how data is saved without an account
- Spoiler: show
-
Code: Select all
await fetch("https://milovana.com/graphql/", {
"credentials": "include",
"headers": {
"Content-Type": "application/json"
},
"body": "{\"query\":\"mutation ($teaseId: ID!, $data: String!) {\\n saveTeaseStorage(teaseId: $teaseId, data: $data)\\n }\",\"variables\":{\"teaseId\":80144,\"data\":\"{}\"}}\n",
"method": "POST",
"mode": "cors"
});
Running this code in the browser will reset the data in tease 80144, Update to the ID you want (near the end of the body row)
Only tested a little so could cause bad things for more complex teases
This updates the data back to nothing like you first opened the tease
Use this power responsibly

Re: How to delete account bound webtease progress?
Posted: Tue May 26, 2026 10:20 am
by Thamrill
If you're logged in, data is stored on the server and is available to multiple browser. If you access it unlogged, the data is stored in the browser; one way could be to run a tease using your browser anonymous mode and you should be able to reset (but at the same time you lose all save functionality).
P.S.:
StellaRack wrote: Tue May 26, 2026 9:34 am
- Spoiler: show
-
Code: Select all
await fetch("https://milovana.com/graphql/", {
"credentials": "include",
"headers": {
"Content-Type": "application/json"
},
"body": "{\"query\":\"mutation ($teaseId: ID!, $data: String!) {\\n saveTeaseStorage(teaseId: $teaseId, data: $data)\\n }\",\"variables\":{\"teaseId\":80144,\"data\":\"{}\"}}\n",
"method": "POST",
"mode": "cors"
});
That's sorcery! (jk

)