Notifications Configuration
Configure notification delivery, delivery sounds, and order announcements.
notifications:
enabled: true
methods:
- CHAT
- ACTION_BAR
sound-on-delivery: true
sound-name: ENTITY_EXPERIENCE_ORB_PICKUP
sound-volume: 0.5
sound-pitch: 1.0
order-announcements:
enabled: true
broadcast-to-all: true
permission: "sigmaorders.announcement"
| Setting | Type | Default | Description |
|---|---|---|---|
enabled | Boolean | true | Enable/disable all notifications |
methods | List of Strings | [CHAT, ACTION_BAR] | Delivery methods. Options: CHAT, TITLE, ACTION_BAR, SOUND |
sound-on-delivery | Boolean | true | Play a sound when items are delivered |
sound-name | String | ENTITY_EXPERIENCE_ORB_PICKUP | Minecraft sound name to play (e.g. ENTITY_PLAYER_LEVELUP, BLOCK_NOTE_BLOCK_PLING) |
sound-volume | Double (0.0โ1.0) | 0.5 | Sound volume |
sound-pitch | Double (0.0โ2.0) | 1.0 | Sound pitch |
order-announcements.enabled | Boolean | true | Enable order placement announcements |
order-announcements.broadcast-to-all | Boolean | true | If false, only players with the permission below receive the announcement |
order-announcements.permission | String | sigmaorders.announcement | Permission required when broadcast-to-all is false |
Message text itself (e.g. order.created, delivery.completed-item, collection.collected) is configured separately in messages.yml.
GUI Open Soundโ
Play a sound when a player opens the Orders GUI (/orders). Configured in config-orders.yml under gui.open-sound. Disabled by default.
gui:
open-sound:
enabled: false
sound: BLOCK_CHEST_OPEN
volume: 0.5
pitch: 1.2
| Setting | Type | Default | Description |
|---|---|---|---|
enabled | Boolean | false | Enable/disable the GUI open sound |
sound | String | BLOCK_CHEST_OPEN | Any valid Bukkit Sound name |
volume | Double | 0.5 | Sound volume (0.0โ1.0) |
pitch | Double | 1.2 | Sound pitch (0.5โ2.0) |
Popular options: BLOCK_CHEST_OPEN, ENTITY_EXPERIENCE_ORB_PICKUP, BLOCK_NOTE_BLOCK_PLING, BLOCK_NOTE_BLOCK_BELL, BLOCK_ENCHANTMENT_TABLE_USE, UI_BUTTON_CLICK. A full commented list of options is included in the config file.
The Auction GUI (/ah) has an identical gui.open-sound block in config-auction.yml with the same settings. Both are configured independently โ you can use different sounds for orders and auctions.
See Alsoโ
- Messages File - message customization
- Features Configuration