Giter VIP home page Giter VIP logo

Comments (4)

Gobluebro avatar Gobluebro commented on May 23, 2024 1

If you are comfortable with using developer tools and using the console you could get these settings copied to your machine through setting the localstorage yourself.

I took some time to try to get this to work myself. This is no way a working perfect solution that I will maintain by any means but merely proof you can technically copy the settings manually if you so wish.

On the computer you want to copy settings from:

JSON.stringify(Object.entries(localStorage));

Copy this string and save it however you want to get it to your other computer. It's a long string so I'd suggest something like a txt file.

On the computer you want to copy your settings over to:

const backFromJSON = JSON.parse(**YOUR COPIED JSON STRING HERE**)

for(let i = 0; i < backFromJSON.length; i++){
    localStorage.setItem(backFromJSON[i][0], backFromJSON[i][1])
}

from elden-ring-checklist.

Gobluebro avatar Gobluebro commented on May 23, 2024 1

You could probably do something like stringify on localstorage object itself and then loop through Object.entries(theStringifiedLocalStorageObject) and plug them into localstorage that way as well.

Up to you.

Also I wish I could play elden ring at work 😂

from elden-ring-checklist.

Gobluebro avatar Gobluebro commented on May 23, 2024

Currently there is no official way to sync these, since there is no account and your settings are not stored in a database.

from elden-ring-checklist.

tienxu04 avatar tienxu04 commented on May 23, 2024

thank you so much for your kind and dedicate reply. No, im not able to play at work either. i just make use of some free time there researching the game :)

from elden-ring-checklist.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.