Persistent Storage – Ylands

From Bohemia Interactive Community
Revision as of 14:36, 11 October 2019 by Rudy.cz (talk | contribs) (Created page with "=Overview= It is possible to store custom data for any player across different instances of one custom game. This means, that when payers will disconnect from one game instanc...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Overview

It is possible to store custom data for any player across different instances of one custom game. This means, that when payers will disconnect from one game instance (i.e server) and will reconnect to another one, it is possible to store and retrieve data between those game sessions. For example, creator can store record of achievements gained by the player while playing the game.

  • Storage data are always unique to a specific player (similar as entity storage)
  • Storage data can be updated only if owning player is online


Add new variable to storage

  • Navigate editor menu -> game settings and open Game storage
  • Use "Add new variable" button to add new variable to storage
  • Set variable name, type and default value
  • Important
    • Pay attention to variable type setting, this cannot be changed later!
    • New variable is committed to Game storage right after variable settings are confirmed
    • Important: Once committed, storage variables cannot be deleted, only marked as "obsolete"

Using storage variables

  • Once declared, storage variables will become available in Visual scripting under Variables -> Game Storage category
  • Game storage variables can be used in same way as entity storage variables, but in this case the owner always have to be a player



Template:Ylands scripting navbox