{% extends "base.html" %} {% block title %}Item Editor - Command Storage - Devanturas{% endblock %} {% block description %}Store commands longer than 256 characters temporarily for Minecraft Item Editor plugin{% endblock %} {% block content %}

Store Command

Paste your Minecraft command below. Commands longer than 256 characters will be stored for 30 minutes and a unique retrieval link will be generated.

0 characters

How It Works

  1. Paste your long Minecraft command
  2. Click "Store Command" to generate a link
  3. Copy the generated JSON link
  4. Use the link in your Item Editor plugin

Storage Limits

  • Duration: 30 minutes
  • Max Length: 10,000 characters
  • Format: JSON response
  • Access: Anyone with link

Plugin Usage

Load command in your plugin:

GET https://devanturas.net/projects/itemeditor/storage/{uuid}

Response:
{
  "command": "your command here",
  "created_at": "2026-01-07T12:00:00",
  "expires_at": "2026-01-07T12:30:00"
}
{% endblock %}