Back to mods
PlayerData Core project artwork

CurseForge · Hytale mod

PlayerData Core

Simple key-value player data storage API with JSON persistence for server plugins.

Choose a version Pick your version below, then grab the matching file.

Quick answer

Which PlayerData Core release should I use?

Updated 6 months ago
Latest stable file playerdata-core-1.0.0.jar
Game version Not listed
Mod system Built-in Hytale mod system

PlayerData Core playerdata-core-1.0.0.jar targets Hytale. Do not install it as a separate client mod. Enable it on the world host—the local server in singleplayer or the dedicated server in multiplayer. No required dependencies listed for this file.

Where it goes

Where should PlayerData Core be installed in Hytale?

Do not install it as a separate client mod. Enable it on the world host—the local server in singleplayer or the dedicated server in multiplayer.

Separate client mod Not supported
World host / dedicated server Required
Mod system for this release Built-in Hytale mod system
Required install it here Optional supported, not mandatory Not supported do not install here Source doesn’t say do not assume

Put Hytale mods on the world host or dedicated server. Singleplayer runs a local server too; Hytale does not use separate client mods.

What else does PlayerData Core playerdata-core-1.0.0.jar need?

playerdata-core-1.0.0.jar. Change the file and its required mods may change too.

No required dependencies listed for this file

This file does not list any required mods. Do not add a library just because a different file uses it.

This file does not list any required or optional project dependencies. Check the creator notes before changing an existing world.

Before you install it

Add PlayerData Core without breaking your instance.

Built for PlayerData Core playerdata-core-1.0.0.jar. Pick another file and the loader, install side or required mods may change.

  1. 01

    Stick to this file

    Use playerdata-core-1.0.0.jar. It targets Hytale; another release may target a different game build or dependency set.

  2. 02

    Bring the mods it needs

    This file does not list any required mods. Do not add a library just because a different file uses it.

  3. 03

    Enable it on the world host

    Do not install it as a separate client mod. Enable it on the world host—the local server in singleplayer or the dedicated server in multiplayer.

  4. 04

    Pick the file you checked

    Use the “Get this file” button beside playerdata-core-1.0.0.jar. It opens that exact file at the source.

About this project

What does PlayerData Core add?

PlayerData Core

A lightweight library for storing and retrieving player data in Hytale server plugins.

Features

  • Simple key-value API for any data type
  • Automatic JSON persistence to disk
  • Thread-safe operations
  • Per-player data isolation
  • Zero configuration required
  • Enforced namespaced keys to prevent plugin conflicts

For Plugin Developers

Keys must be namespaced using the format pluginname:keyname to avoid conflicts between plugins.

  // Store data
  PlayerData.set(playerId, "myplugin:coins", 100)
  PlayerData.set(playerId, "myplugin:rank", "VIP")

  // Retrieve data
  val coins = PlayerData.get<Int>(playerId, "myplugin:coins") ?: 0
  val rank = PlayerData.get<String>(playerId, "myplugin:rank")

  // Increment numeric values
  PlayerData.increment(playerId, "myplugin:coins", 50)

  // Remove data
  PlayerData.remove(playerId, "myplugin:temp_data")

  Invalid keys will throw an error:
  "nonamespace"  → Error: Key must be namespaced
  ":keyonly"     → Error: Empty namespace
  "plugin:"      → Error: Empty key name

  Supported Data Types

  - String
  - Int / Long / Double / Float
  - Boolean
  - List<*> (of primitives)
  - Map<String, *> (of primitives)

Installation

  1. Download the JAR file
  2. Place in your server's plugins folder
  3. Restart the server

For Server Owners

This is a library plugin - it does nothing on its own. Install it if another plugin (like AFKManager) requires it as a dependency.

Data Storage

Player data is stored in plugins/PlayerData/data/ as JSON files, one per player UUID.

Project description from CurseForge.

Recent files

PlayerData Core releases and Hytale builds

1 of 1 releases match

Looking for an older file? The official CurseForge project page is in Resources.