Skip to main content

Quickstart

Get SigmaOrders running on your server in 5 minutes.

Prerequisites

  • Paper 1.21+ server
  • Java 21 or higher
  • Vault plugin installed

Installation Steps

1. Download and Install

  1. Download the latest SigmaOrders.jar from releases
  2. Place it in your server's plugins/ folder
  3. Start or restart your server

2. Initial Configuration

The plugin will generate configuration files on first run:

  • plugins/SigmaOrders/config.yml - Main configuration
  • plugins/SigmaOrders/messages.yml - User messages

3. Verify Installation

Check your server console for:

[SigmaOrders] ✓ SQLite database initialized successfully!
[SigmaOrders] ✓ SIGMA ORDERS successfully enabled!

4. Test Basic Functionality

  1. Join your server as a player
  2. Run /orders to open the main GUI
  3. Create a test order: /orders create diamond 1 10.0
  4. Verify the order appears in the GUI

First Order Walkthrough

As Order Creator

# Open the orders GUI
/orders

# Or create via command
/orders create diamond 64 100.0

You'll see:

  • Order created with ID
  • Payment deducted (if charge-on-creation is enabled)
  • Order appears in /orders myorders

As Deliverer

# View all orders
/orders list

# Deliver items to an order
/orders deliver <order-id>

The delivery GUI will:

  • Show required items
  • Let you select items from inventory
  • Pay you automatically upon delivery

As Order Creator (Collecting)

# View your orders
/orders myorders

# Collect delivered items
/orders collect <order-id>

Items are added to your inventory and the order updates automatically.

Common First-Time Issues

"Economy plugin not found"

Solution: Install Vault and an economy plugin (e.g., EssentialsX, CMI)

"Database initialization failed"

Solution: Check file permissions on plugins/SigmaOrders/ folder

"Permission denied"

Solution: Default permissions are enabled for all players. Check plugin.yml if using a permission plugin.

Next Steps

TL;DR

# 1. Install plugin
# 2. Restart server
# 3. Test: /orders create diamond 1 10.0
# 4. Done!