Last Stage After reboot

@rlkoshak made a great article about persistence. (Whoops, beat me to it)

In summary:

  1. Install mapdb persistance addon.
  2. Add a group called gRestoreOnStartup (or whatever you want to call it)
  3. Update mapdb.persist with the contents:
    Strategies {
      default = everyChange
    }
    
    Items {
      // persist items belonging to the group on every change and restore them from the db at startup
      gRestoreOnStartup* : strategy = everyChange, restoreOnStartup
    }
    
  4. Add templinked to the group gRestoreOnStarup
1 Like