Skip to content

🎯 Spawn Points Configuration ​

DANGER

This file was created automatically and should not be edited manually to avoid errors. Instead, use the commands from Essentials Plus. (/setspawn).

File Information

πŸ“ File Location: mods/fof1092_EssentialsPlus/spawns.json
πŸ”™ Back to Configuration Overview

The spawns.json file stores all server spawn points set with /setspawn.

Example Structure:

json
{
  "version": "1.0",
  "spawns": [
    {
      "position": {
        "x": 1397.673583984375,
        "y": 132.0,
        "z": 5285.53564453125
      },
      "rotation": {
        "x": -0.16625008,
        "y": 1.3541569,
        "z": 0.0
      },
      "world": "f4cc7039-90c1-4e5f-846d-51298729b0d1",
      "mainSpawn": true
    },
    {
      "position": {
        "x": -203.4521942138672,
        "y": 121.0,
        "z": -2.917734146118164
      },
      "rotation": {
        "x": 0.0,
        "y": 1.1494064,
        "z": 0.0
      },
      "world": "23cc3988-c73c-4708-b489-aea2245a403e",
      "mainSpawn": false
    }
  ]
}

Spawn Properties:

  • position - Spawn point coordinates
    • x - X coordinate
    • y - Y coordinate (altitude)
    • z - Z coordinate
  • rotation - Player's view rotation at spawn
    • x - Pitch rotation (up/down)
    • y - Yaw rotation (left/right)
    • z - Roll rotation (typically 0.0)
  • world - World UUID where spawn is located
  • mainSpawn - Whether this is the main server spawn point
    • true - This is the default spawn for /spawn command
    • false - This is a world-specific spawn

Features:

  • Multiple spawn points per server (one per world)
  • One main spawn point for the entire server
  • Per-world spawn support when perWorldSpawn is enabled in config
  • Precise rotation saving for optimal spawn experience
  • Automatic world UUID resolution

Related Commands:

  • /spawn - Teleport to spawn point
  • /setspawn - Set spawn point at current location
  • /spawn --world=[world] - Teleport to specific world spawn (when per-world enabled)

Note: This file is automatically managed by the plugin. Use /setspawn command to create or update spawn points. With the improved spawn system in v1.11.0, spawns now save proper rotation for a better player experience.