🛒frameshop.yml

Supported currencies

In currencies section you can configure what currencies can players use in this module.

Name of the currencies shall be in lowercase. Use the name in the config section ("vault" instead of "Dollars").

currencies:
  - "vault"
  - "tokenmanager"
  - "playerpoints"
  - "beasttokens"
  - "exp"

Default currency

Default currency is used when players don't fill last (currency) line. The selected currency must be enabled and added to currencies list above.

defaultCurrency: "vault"

Discord logger

Discord logger is useful for monitoring activity of the players. You can setup custom webhook which will be used to send information about new shops etc.

# Discord logger configuration
discordLogger:
  # Enable Discord logging
  enabled: false
  # Webhook URL (find more here: https://support.discord.com/hc/en-us/articles/228383668-Intro-to-Webhooks)
  webhook: https://discord.com/api/webhooks/WEBHOOK_CODE_HERE
  # List of logged events
  loggedEvents:
    shopCreate: false
    shopRemove: false
    shopBuy: false

Last updated