Skip to main content

Features Configuration

Enable or disable optional features.

Feature Togglesโ€‹

features:
shulker-box-support: true
drop-all-button: true
order-priority: true
order-search: true
delivery-history: true
reputation-system: true

Available Featuresโ€‹

shulker-box-supportโ€‹

Type: Boolean
Default: true
Description: Enable shulker box support

Note: Shulker boxes are hardcoded as blocked items to prevent data loss. This setting may control future shulker box functionality.

drop-all-buttonโ€‹

Type: Boolean
Default: true
Description: Show "Drop All Items" button in GUIs

order-priorityโ€‹

Type: Boolean
Default: true
Description: Enable order priority/urgent marking

Behavior:

  • Allows marking orders as urgent
  • Urgent orders appear first in lists
  • Visual distinction in GUI

Type: Boolean
Default: true
Description: Enable order search functionality

Behavior:

  • Enables /orders search command
  • Search by item name (case-insensitive)
  • Supports ItemsAdder custom items (searches by custom item name)
  • Preserves search query when navigating between GUIs
  • Filter orders in GUI

delivery-historyโ€‹

Type: Boolean
Default: true
Description: Track delivery history

Behavior:

  • Records who delivered what
  • Stores delivery timestamps
  • Used for statistics and tracking

reputation-systemโ€‹

Type: Boolean
Default: true
Description: Enable reputation system

Note: Reputation system may be implemented in future versions.

Feature Combinationsโ€‹

Minimal Featuresโ€‹

features:
shulker-box-support: false
drop-all-button: false
order-priority: false
order-search: false
delivery-history: false
reputation-system: false

Full Featuresโ€‹

features:
shulker-box-support: true
drop-all-button: true
order-priority: true
order-search: true
delivery-history: true
reputation-system: true

Performance-Focusedโ€‹

features:
shulker-box-support: false
drop-all-button: true
order-priority: true
order-search: false # Disable for performance
delivery-history: false # Disable for performance
reputation-system: false