Persistent Storage
Store Data Between Worlds
This extremely simple extension allows you to save various values and transfer them between different game worlds. Currently, the functionality works only on the client side, but developers plan to add server-side support in future versions.
How to Use:
Saving Information
PersistentStorage.put(String key, Object value)PersistentStorage.putTag(String tag)
Retrieving Data
PersistentStorage.get(String key)(ReturnsJSONElement)PersistentStorage.getTag(String tag)(Returnstrueif the tag has been set)PersistentStorage.getBoolean(String key)(Returnstruefor the specified key)