I’m trying to make a bookmarklet that modifies the “local storage” for a game online, but I want it to question the user the amount of “coins” the user wants via an alert.
This is the code
JavaScript
x
5
1
localStorage.setItem('mjs-drift-boss-game-v1.0.1-dailyreward',
2
'{"sound":0.7,"music":0,"score":-3,"hasShownTutorial":true,"collectedCoin":999999,"cars":[0,1,2,3,4,5,6,7],"currentCar":7,"currentTip":0,"booster1":99999999,"booster2":9999999,"booster3":999999,"ko":0,"hasShownBoosterTutorial":true}')
3
alert('Modifed Game!')
4
location.reload();
5
Advertisement
Answer
You can do something like this:
JavaScript
1
8
1
const data = JSON.parse(localStorage.getItem('mjs-drift-boss-game-v1.0.1-dailyreward'));
2
const coins = window.prompt('Set Coins', data.collectedCoin);
3
4
localStorage.setItem('mjs-drift-boss-game-v1.0.1-dailyreward',
5
'{"sound":0.7,"music":0,"score":-3,"hasShownTutorial":true,"collectedCoin":' + coins + ',"cars":[0,1,2,3,4,5,6,7],"currentCar":7,"currentTip":0,"booster1":99999999,"booster2":9999999,"booster3":999999,"ko":0,"hasShownBoosterTutorial":true}')
6
alert('Modifed Game!')
7
location.reload();
8
This way you get the last stored value pre filled and you can change it to the new value, which gets stored in localStorage.