Guest User

Untitled

a guest
Aug 9th, 2025
701
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 6.83 KB | None | 0 0
  1. # Messages shown to players for various currency-related actions
  2. messages:
  3.   invalid_currency: '<gradient:#FFFF00:#FFD700:#FFA500><bold>CURRENCIES</bold></gradient> <dark_gray>»</dark_gray> <white>Invalid currency name.'
  4.   no_permission: '<gradient:#FFFF00:#FFD700:#FFA500><bold>CURRENCIES</bold></gradient> <dark_gray>»</dark_gray> <white>You do not have permission to do that!'
  5.   not_enough_currency: '<gradient:#FFFF00:#FFD700:#FFA500><bold>CURRENCIES</bold></gradient> <dark_gray>»</dark_gray> <white>You don''t have enough %currency%'
  6.   your_currency: '<gradient:#FFFF00:#FFD700:#FFA500><bold>CURRENCIES</bold></gradient> <dark_gray>»</dark_gray> <white>You have <yellow>%amount% <white>%currency%'
  7.   other_currency: '<gradient:#FFFF00:#FFD700:#FFA500><bold>CURRENCIES</bold></gradient> <dark_gray>»</dark_gray> <yellow>%player%''s %currency%: %amount%'
  8.   not_withdrawal_currency: '<gradient:#FFFF00:#FFD700:#FFA500><bold>CURRENCIES</bold></gradient> <dark_gray>»</dark_gray> <red>%currency% is not withdrawable!'
  9.   withdraw_successful: '<gradient:#FFFF00:#FFD700:#FFA500><bold>CURRENCIES</bold></gradient> <dark_gray>»</dark_gray> <white>You have withdrawn <yellow>%amount% %currency%!'
  10.   admin_set_currency: '<gradient:#FFFF00:#FFD700:#FFA500><bold>CURRENCIES</bold></gradient> <dark_gray>»</dark_gray> <white>Successfuly set <yellow>%player%''s %currency% to <yellow>%amount%.'
  11.   admin_give_currency: '<gradient:#FFFF00:#FFD700:#FFA500><bold>CURRENCIES</bold></gradient> <dark_gray>»</dark_gray> <white>Successfuly given <yellow>%amount% %currency% to <yellow>%player%.'
  12.   admin_remove_currency: '<gradient:#FFFF00:#FFD700:#FFA500><bold>CURRENCIES</bold></gradient> <dark_gray>»</dark_gray> <white>Successfuly removed <yellow>%amount% %currency% from <yellow>%player%.'
  13.   currency_redeem: '<gradient:#FFFF00:#FFD700:#FFA500><bold>CURRENCIES</bold></gradient> <dark_gray>»</dark_gray> <yellow>You redeemed <white>%amount% %currency%'
  14.   currency_send: '<gradient:#FFFF00:#FFD700:#FFA500><bold>CURRENCIES</bold></gradient> <dark_gray>»</dark_gray> <yellow>You have sent <white>%amount% %currency% <yellow>to <white>%player%'
  15.   currency_cant_send_to_yourself: '<gradient:#FFFF00:#FFD700:#FFA500><bold>CURRENCIES</bold></gradient> <dark_gray>»</dark_gray> <white>You can''t send currency to yourself.'
  16.   currency_received: '<gradient:#FFFF00:#FFD700:#FFA500><bold>CURRENCIES</bold></gradient> <dark_gray>»</dark_gray> <yellow>You received <white>%amount% %currency% <yellow>from <white>%player%.'
  17.   currency_received_console: '<gradient:#FFFF00:#FFD700:#FFA500><bold>CURRENCIES</bold></gradient> <dark_gray>»</dark_gray> <white>You have received <white>%amount% %currency%.'
  18.   not_a_number: '<gradient:#FFFF00:#FFD700:#FFA500><bold>CURRENCIES</bold></gradient> <dark_gray>»</dark_gray> <white>%input% is not a number!'
  19.   player_not_online: '<gradient:#FFFF00:#FFD700:#FFA500><bold>PRISON</bold></gradient> <dark_gray>»</dark_gray> <white>Player <yellow>%player% <white>is not online!'
  20.   currency_message_disabled: '<gradient:#FFFF00:#FFD700:#FFA500><bold>CURRENCIES</bold></gradient> <dark_gray>»</dark_gray> <white>%currency% Messages <yellow><bold>OFF'
  21.   currency_message_enabled: '<gradient:#FFFF00:#FFD700:#FFA500><bold>CURRENCIES</bold></gradient> <dark_gray>»</dark_gray> <white>%currency% Messages <yellow><bold>ON'
  22. # Configuration for each available currency
  23. currencies:
  24.   money:
  25.     enabled: true
  26.     starting-amount: 1000000  # Initial balance for new players
  27.     max-amount: 1000000000000000  # Max allowed currency
  28.     display-name: "Money"  # Shown in GUI or messages
  29.     format: "#,##0.##"  # Number formatting
  30.     short-format: true  # Enables short formatting like 1M, 1B
  31.     trim-zeros: true  # Removes trailing zeros
  32.     prefix: "$"  # Added before the amount
  33.     suffix: ""  # Added after the amount
  34.     physical-item: # Configuration for redeemable item
  35.       material: PAPER  # Item type
  36.       custom_model_data: 0  # Custom model data for resource packs
  37.       name: '<gradient:#FFFF00:#FFD700:#FFA500>%amount% <bold>Money</bold></gradient>' # Display name
  38.       lore:
  39.        - '<yellow>➥ <white>Right-Click to Redeem'  # Description/lore line
  40.   tokens:
  41.     enabled: true
  42.     starting-amount: 1000000
  43.     max-amount: 1000000000000000
  44.     display-name: "Tokens"
  45.     format: "#.##"
  46.     short-format: true
  47.     trim-zeros: true
  48.     prefix: "⛃"
  49.     suffix: ""
  50.     physical-item:
  51.       material: SUNFLOWER
  52.       custom_model_data: 0
  53.       name: '<gradient:#FFFF00:#FFD700:#FFA500>%amount% <bold>Tokens</bold></gradient>'
  54.       lore:
  55.        - '<yellow>➥ <white>Right-Click to Redeem'
  56.   gems:
  57.     enabled: true
  58.     starting-amount: 1000000
  59.     max-amount: 1000000000000000
  60.     display-name: "Gems"
  61.     format: "#.##"
  62.     short-format: true
  63.     trim-zeros: true
  64.     prefix: "💠"
  65.     suffix: ""
  66.     physical-item:
  67.       custom_model_data: 0
  68.       material: EMERALD
  69.       name: '<gradient:#FFFF00:#FFD700:#FFA500>%amount% <bold>Gems</bold></gradient>'
  70.       lore:
  71.        - '<yellow>➥ <white>Right-Click to redeem'
  72. # Help menu shown to players
  73. currency-help-menu:
  74.  - '<yellow><strikethrough>-------<white><strikethrough>-------<yellow><strikethrough>--------<white><strikethrough>--------<yellow><strikethrough>--------<white><strikethrough>-------<yellow><strikethrough>-------'
  75.   - '<yellow><bold>%currency% Help'
  76.   - '<yellow><strikethrough>-------<white><strikethrough>-------<yellow><strikethrough>--------<white><strikethrough>--------<yellow><strikethrough>--------<white><strikethrough>-------<yellow><strikethrough>-------'
  77.   - '<yellow>/%currency% balance [player]'
  78.   - '<yellow>/%currency% pay [player] [amount]'
  79.   - '<yellow>/%currency% withdraw [amount]'
  80.   - '<yellow><strikethrough>-------<white><strikethrough>-------<yellow><strikethrough>--------<white><strikethrough>--------<yellow><strikethrough>--------<white><strikethrough>-------<yellow><strikethrough>-------'
  81.  
  82.  
  83. # Help menu for admins
  84. currency-admin-help-menu:
  85.  - '<yellow><strikethrough>-------<white><strikethrough>-------<yellow><strikethrough>--------<white><strikethrough>--------<yellow><strikethrough>--------<white><strikethrough>-------<yellow><strikethrough>-------'
  86.   - '<yellow><bold>%currency% Admin Help'
  87.   - '<yellow><strikethrough>-------<white><strikethrough>-------<yellow><strikethrough>--------<white><strikethrough>--------<yellow><strikethrough>--------<white><strikethrough>-------<yellow><strikethrough>-------'
  88.   - '<yellow>/%currency% set [player] [amount]'
  89.   - '<yellow>/%currency% give [player] [amount]'
  90.   - '<yellow>/%currency% remove [player] [amount]'
  91.   - '<yellow><strikethrough>-------<white><strikethrough>-------<yellow><strikethrough>--------<white><strikethrough>--------<yellow><strikethrough>--------<white><strikethrough>-------<yellow><strikethrough>-------'
  92. # How often player data is saved (in seconds)
  93. player_data_save_interval: 60
  94.  
Add Comment
Please, Sign In to add comment