How to delete account bound webtease progress?

Post all technical issues and questions here. We'll gladly help you wherever we can.
Post Reply
HappyToLose
Curious Newbie
Curious Newbie
Posts: 3
Joined: Fri May 08, 2026 8:45 pm

How to delete account bound webtease progress?

Post 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.
kerkersklave
Explorer At Heart
Explorer At Heart
Posts: 711
Joined: Sun Jul 06, 2014 2:11 pm
Gender: Male
Sexual Orientation: Open to new ideas!
I am a: Slave

Re: How to delete account bound webtease progress?

Post 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.
User avatar
edger477
Experimentor
Experimentor
Posts: 1126
Joined: Mon Nov 29, 2021 8:24 pm
Gender: Male
Sexual Orientation: Straight
I am a: Switch
Location: I'm where you need me

Re: How to delete account bound webtease progress?

Post 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.
My estim creations: https://mega.nz/folder/73pxmBBQ#X6ylDzRafzTt9wanZ0dacw
And in E-Stim Index: viewtopic.php?t=27090

Try creating your own estims with my restim script generator!
lor205y
Explorer
Explorer
Posts: 49
Joined: Mon Feb 04, 2013 8:56 pm

Re: How to delete account bound webtease progress?

Post 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.
User avatar
StellaRack
Explorer At Heart
Explorer At Heart
Posts: 233
Joined: Wed Jan 03, 2024 9:13 pm
Gender: Femboy
Sexual Orientation: Straight
I am a: Submissive

Re: How to delete account bound webtease progress?

Post 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 :lol:
Thamrill
Explorer At Heart
Explorer At Heart
Posts: 301
Joined: Thu Jan 03, 2013 4:55 pm
Gender: Male
Sexual Orientation: Straight
I am a: Submissive

Re: How to delete account bound webtease progress?

Post 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 :lol: )
Image

Image

Image
Post Reply