> For the complete documentation index, see [llms.txt](https://obey.gitbook.io/wiki/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://obey.gitbook.io/wiki/coinflips/messages.md).

# Messages

## Default messages.yml

```yaml
prefix: "<#ffe573><b>COINFLIPS</b><white>"
accent: "<#ffe573>"

messages:
  click-to-abort: <click:run_command:/cf cancel><hover:show_text:'Click to Abort'>%crowncoinflips_prefix%
    Click %accent%<b><u>HERE</u></b>%white% to abort. </hover></click>
  create-input-min: '%crowncoinflips_prefix% You have to bet at least %crowncoinflips_accent%%amount%%white%.'
  create-input-max: '%crowncoinflips_prefix% You have to bet less than %crowncoinflips_accent%%amount%%white%.'
  create-input-amount: '%crowncoinflips_prefix% Input how much you want to bet in chat. Use ''cancel''
    to abort.'
  create-aborted: '%crowncoinflips_prefix% You have cancelled this action.'
  created-coinflip: '%crowncoinflips_prefix% You have created a %crowncoinflips_accent%$%amount%%white% coinflip.'
  created-coinflip-broadcast: '%crowncoinflips_prefix% %player% has created a %crowncoinflips_accent%$%amount%%white%
    coinflip.'
  closed-coinflip: '%crowncoinflips_prefix% You have closed your coinflip.'
  not-able-to-close: '%crowncoinflips_prefix% Your coinflip is already running, you are not able
    to close it anymore.'
  already-in-coinflip: '%crowncoinflips_prefix% You already are in a Coinflip game.'
  no-coinflip: '%crowncoinflips_prefix% You don''t have a coinflip to close.'
  cancel-coinflip: '%crowncoinflips_prefix% Press &c&l&bnHERE %white% to close the coinflip.'
  status-running: '#ff6161Running'
  status-waiting: '%crowncoinflips_accent%Waiting'
  verb-join: join
  verb-spectate: spectate
  verb-remove: remove
  cancel-input: cancel
  game-gui-title: '               %crowncoinflips_accent%Coin Flip'
  game-skull-displayname: '%crowncoinflips_accent%%player%''s %white%Head'
  coinflip-displayname: '%crowncoinflips_accent%%player%''s Coinflip'
  winner-item-displayname: '%crowncoinflips_accent%<b>WINNER</b>'
  coinflip-won: '%crowncoinflips_prefix% You have won #61ff8b$%amount% %white%against %crowncoinflips_accent%%player%%white%
    in a coinflip.'
  coinflip-lost: '%crowncoinflips_prefix% You have lost #ff6161$%amount% %white%against %crowncoinflips_accent%%player%%white%
    in a coinflip.'
  coinflip-ended-broadcast: '%crowncoinflips_prefix% &a%winner% %white%has won %crowncoinflips_accent%$%amount%%white%
    against &c%looser%%white%.'
  coinflip-announcement-enabled: '%crowncoinflips_prefix% You have enabled the CoinFlip broadcast.'
  coinflip-announcement-disabled: '%crowncoinflips_prefix% You have disabled the CoinFlip broadcast.'
  coinflip-no-longer-available: '%crowncoinflips_prefix% That coinflip is no longer available.'
  create-sign-lines:
    - ""
    - "^^^^^^^^^^^^^^^"
    - "Enter Amount"
    - "To Coinflip"
  coinflip-lore:
    - '&8ᴄᴏɪɴꜰʟɪᴘѕ'
    - ''
    - '%crowncoinflips_accent%Information:'
    - '%crowncoinflips_accent%⚑ &fStatus: %status%'
    - '%crowncoinflips_accent%$ &fAmount: %crowncoinflips_accent%$%amount%'
    - ''
    - '&#FFFF00➡ Click to %verb%'
  own-coinflip-lore:
    - '&8ᴄᴏɪɴꜰʟɪᴘѕ'
    - ''
    - '%crowncoinflips_accent%Information:'
    - '%crowncoinflips_accent%⚑ &fStatus: %status%'
    - '%crowncoinflips_accent%$ &fAmount: %crowncoinflips_accent%$%amount%'
    - ''
    - '&#FFFF00➡ Click to %verb%'

```

## What these values mean

### Chat Input & Flow Messages

* `create-input-amount`: Message prompting the player to type their wager in chat.
* `click-to-abort` / `cancel-coinflip`: Clickable chat elements to abort the coinflip creation process.
* `create-aborted`: Sent when coinflip creation is cancelled.
* `create-input-min` / `create-input-max`: Error messages when a wager is too low or too high.
* `already-in-coinflip`: Error when a player attempts to make a second coinflip.
* `created-coinflip`: Confirmation sent to the creator.
* `created-coinflip-broadcast`: Server broadcast announcing a new open coinflip.
* `closed-coinflip` / `no-coinflip`: Messages related to removing an open coinflip from the menu.
* `coinflip-no-longer-available`: Sent when a player confirms joining a coinflip that has already been taken or closed.

### Game Outcome Messages

* `coinflip-won` / `coinflip-lost`: Direct message to the winner and loser when a coinflip finishes.
* `coinflip-ended-broadcast`: Server broadcast announcing the outcome.

### GUI & Lore Items

* `status-waiting` / `status-running`: Display text for the coinflip's current state.
* `verb-join` / `verb-spectate` / `verb-remove`: The call-to-action string shown on wagers in the menu.
* `coinflip-lore`: The Lore shown on active coinflips created by other players.
* `own-coinflip-lore`: The Lore shown on active coinflips created by the viewer.
* `create-sign-lines`: The default lines displayed on the virtual SignGUI when sign input is enabled.
