Skip to content

en Configuration

Bloody_Mind edited this page Dec 5, 2025 · 1 revision

Configuration

Configuration of EthriaPlotAddon.


πŸ“ Files

plugins/EthriaPlotAddon/
β”œβ”€β”€ config.yml              # Main configuration
└── lang/
    β”œβ”€β”€ de-de/
    β”‚   β”œβ”€β”€ messages.yml     # German messages
    β”‚   └── entities.yml     # German entity names
    └── en-us/
        β”œβ”€β”€ messages.yml     # English messages
        └── entities.yml     # English entity names

βš™οΈ config.yml

Complete Example Configuration

# EthriaPlotAddon Configuration
# Plugin for counting entities on plots with extended features

# Language for messages (de-de, en-us)
language: "en-us"

# Command aliases (in addition to /plotcount)
command_aliases:
  plotcheck: "check"    # /plotcheck becomes /plotaddon check
  count: "count"        # /count becomes /plotaddon count
  entitycount: "count"  # /entitycount becomes /plotaddon count

# Advanced settings
settings:
  # Should invisible entities be counted?
  count_invisible: true

  # Should fixed entities be counted?
  count_fixed: true

  # Should merged plots be included?
  include_merged_plots: true

  # Maximum entities to count at once (performance)
  max_count_limit: 1000

  # Should dropped items be counted?
  count_dropped_items: false

  # Enable debug mode (writes detailed information to debug.log)
  debug_enabled: false

  # Debug mode for detailed plot boundary information
  debug_boundaries: false

πŸ†• New Features (v1.2)

Command Aliases

command_aliases:
  plotcheck: "check"     # /plotcheck for plot information
  pc: "count"            # /pc as short count alias
  plotinfo: "check"      # /plotinfo for plot details

Plot Check Settings

The plot check system is enabled by default and requires no further configuration.

Performance settings

performance: async_counting: true cache_enabled: true

Message format

message_format: prefix: "[EthriaCount]" colors: true


### Important Settings

| Option | Description | Default |
|--------|-------------|---------|
| `language` | Language for messages | `"de-de"` |
| `debug_enabled` | Enable debug mode | `false` |
| `async_counting` | Asynchronous counting | `true` |
| `cache_enabled` | Enable plot cache | `true` |

---

## πŸ”„ Reload Configuration

```bash
/plotcount reload

Reloads all configuration files without server restart.

Clone this wiki locally