Printing

Official docs of Skript-gson

Example of Printing - with print screen

Storage - Json file

{
    "playerdata": {
        "name": "player",
        "health": 20,
        "some": "Example",
        "array": ["somedataHere", false, true, null]
    }
}

With pretty print

options:
    storage: json from file "plugins/YourAwesome/storage.json"

on load:
    broadcast {@storage}  with pretty print

Without pretty print

options:
    storage: json from file "plugins/YourAwesome/storage.json"

on load:
    broadcast {@storage}

Last updated