# message.yml

## 🎨 Message Format Usage

You can use color codes in the following four formats:

#### **1. RGB**

`&#ffffff`

#### **2. Standard**

`&f`

#### **3. MiniMessage**

`<red>`

#### **4. Legacy Hex**

`&x&.....`

🔗 **Web Editor:**\
<https://www.birdflop.com/resources/rgb/>

***

## 📝 Messages Configuration

All messages listed here are used throughout the entire system and can be fully customized as needed.

```yaml
# =====================================================
#                     Nw MVP
#                Commands Messages
# =====================================================

command:
  # Permission messages
  no-permission: "§cYou do not have permission."
  only-players: "§cOnly players may use this command."
  
  # Usage messages
  usage-score: "§cUsage: /nwmvp score <boss>"
  usage-daily-stats: "§cUsage: /nwmvp daily stats [player]"
  usage-season-stats: "§cUsage: /nwmvp season stats [player]"
  usage-season-reset: "§cUsage: /nwmvp admin season reset <player>"
  usage-daily-reset: "§cUsage: /nwmvp admin daily reset <player>"
  usage-daily-admin: "§eUsage: /nwmvp admin daily <reset|start|end> [player]"
  usage-season-admin: "§eUsage: /nwmvp admin season <start|end|check|reset>"
  usage-schedules: "§eUsage: /nwmvp admin schedules <daily|season|territory|all> reload"
  
  # Error messages
  unknown-command: "§cUnknown command. Use /nwmvp"
  boss-not-found: "§cBoss '{boss}' not found."
  season-data-not-found: "§cNo season data for this player. Season may not be active."
  season-data-not-found-self: "§cSeason data not found for you."
  already-claimed-reward: "§cYou've already claimed this season's rewards!"
  season-not-ended: "§cSeason has not ended yet. You can only claim rewards when the season is ENDED."
  unknown-daily-command: "§cUnknown daily command. Use: reset, start, end"
  unknown-schedules-type: "§cUnknown schedules type. Use: daily, season, territory, all"
  
  # Success messages
  reload-success: "§a[nwMVP] configs reloaded!"
  daily-schedules-reloaded: "§aDaily schedules reloaded!"
  season-schedules-reloaded: "§aSeason schedules reloaded!"
  territory-schedules-reloaded: "§aTerritory schedules reloaded!"
  all-schedules-reloaded: "§aAll schedules reloaded!"
  daily-score-reset: "§aDaily score reset for: §e{player}"
  daily-reset-started: "§aDaily reset started! All daily scores have been cleared."
  daily-period-ended: "§aDaily period ended! All daily scores have been cleared."
  season-started: "§aSeason started! ID: {season_id}"
  season-ended: "§cSeason ended! Players will be notified about rewards."
  season-data-reset: "§aSeason data reset for §e{player}"
  no-active-season: "§cNo active season to end!"
  season-already-in-state: "§cThe season status is already in this state."
  database-not-connected: "§cDatabase is not connected!"
  no-season-data: "§eNo season data found in database."
  
  # Help messages
  help:
    - "§e/nwmvp score <boss>"
    - "§e/nwmvp daily stats [player]"
    - "§e/nwmvp season stats [player]"
    - "§e/nwmvp season reward"
    - "§e/nwmvp territory maintenance"
    - "§e/nwmvp territory gui"
    - "§e/nwmvp territory stats"
    - "§e/nwmvp admin reload"
    - "§e/nwmvp admin schedules <daily|season|territory|all> reload"
  
  admin-help:
    - "§e/nwmvp admin reload"
    - "§e/nwmvp admin daily reset <player>"
    - "§e/nwmvp admin daily start"
    - "§e/nwmvp admin daily end"
    - "§e/nwmvp admin season <start|end|check|reset>"
    - "§e/nwmvp admin schedules <daily|season|territory|all> reload"
  
  # Season admin messages
  season-schedule-enabled: "§cCannot use /nwmvp admin season start when schedule is enabled!"
  season-schedule-info: "§eSeason will start automatically based on schedule.start-date."
  season-schedule-disable-info: "§eTo disable schedule, set season.schedule.enabled to false in config.yml"
  
  # Season check messages (list format)
  season-check-info:
    - "§6========== Season Info =========="
    - "§eSeason ID: §b{season_id}"
    - "§eState: §b{state}"
    - "§eStart Time: §b{start_time}"
    - "§eEnd Time: §b{end_time}"
    - "§eCurrent Season in Memory: §b{season_id}"
    - "§eCurrent State in Memory: §b{state}"
    - "§6================================"
  season-check-error: "§cError checking season state: {error}"
  
  # =====================================================
  # Regen Zone Messages
  # =====================================================
  regenzone:
    system-disabled: "§c[Regen Zone] Regen zone system is not enabled! Set regen-block-plugin to 'nwmvp' in config.yml"
    usage: "§cUsage: /nwmvp admin territory regenzone <create|delete|list|wand|setting> [zoneName]"
    usage-create: "§cUsage: /nwmvp admin territory regenzone create <zoneName>"
    usage-delete: "§cUsage: /nwmvp admin territory regenzone delete <zoneName>"
    no-selection: "§c[Regen Zone] You must set both pos1 and pos2 using the wand!"
    different-worlds: "§c[Regen Zone] Pos1 and pos2 must be in the same world!"
    create-success: "§a[Regen Zone] Zone '{zoneName}' created successfully!"
    create-failed: "§c[Regen Zone] Failed to create zone '{zoneName}'!"
    delete-success: "§a[Regen Zone] Zone '{zoneName}' deleted successfully!"
    delete-failed: "§c[Regen Zone] Failed to delete zone '{zoneName}' or zone does not exist!"
    list-empty: "§e[Regen Zone] No regen zones found."
    available-zones-header: "§eAvailable zones:"
    zone-list-item: "§7- §a{zoneName} §7({status})"
    wand-given: "§a[Regen Zone] Wand added to your inventory!"
    wand-dropped: "§a[Regen Zone] Wand dropped at your location (inventory full)!"
    wand-usage: "§7Left click to set pos1, Right click to set pos2"
    wand-failed: "§c[Regen Zone] Failed to create wand!"
    list:
      - "§6===== Regen Zones ====="
      - "§eTotal: §b{total} §7(Page {page}/{totalPages})"


```
