Advertisement
Guest User

Untitled

a guest
Feb 24th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.17 KB | None | 0 0
  1. # List of all currencies
  2. currencies:
  3.  # Dollar definition, with default starting balance player would have 100$ and 50¢, or 100.5$
  4.   dollar:
  5.    # How many minors are in one major e.g 1$ (major) = 100¢ (minor)
  6.     currency-division: 100
  7.     # Does user get this currency on start
  8.     starting: true
  9.     # Dollar major def. e.g "100$"
  10.     major:
  11.       name: 'dollar'
  12.       symbol: '$'
  13.       starting-balance: 100
  14.     # Dollar minor def. e.g "50¢"
  15.     minor:
  16.       name: 'cent'
  17.       symbol: '¢'
  18.       starting-balance: 50
  19.   euro:
  20.     currency-division: 100
  21.     starting: false
  22.     major:
  23.       name: 'euro'
  24.       symbol: '€'
  25.       starting-balance: 0
  26.     minor:
  27.       name: 'cent'
  28.       symbol: 'c'
  29.       starting-balance: 0
  30.  
  31. # Exchange rates for currencies
  32. # toCurrency@major.minor
  33. exchange:
  34.  # one dollar = 2 euros
  35.   dollar:
  36.    - 'euro@2.00'
  37.   # one euro = 50 cents
  38.   euro:
  39.    - 'dollar@0.50'
  40.  
  41. # Main currency used by server
  42. mainCurrency: 'dollar'
  43.  
  44. vaultSupport: false
  45.  
  46. database:
  47.   host: ''
  48.   port: ''
  49.   username: ''
  50.   password: ''
  51.   database_name: ''
  52.   table_name: ''
  53.  
  54. # List of all messages, placeholders:
  55. messages:
  56.   playerDoesntExist: 'That player does not exist!'
  57.   notAPlayer: '&4You have to be a player to use this command!'
  58.   notANumber: '&4Coin amount must be a number!'
  59.   coinDoesntExist: '&4That coin does not exist'
  60.   doesntHavePerms: '&4You do not have permissions to use this command!'
  61.   badCommand: '&4That command does not exist! Use /mcoins help to see help!'
  62.   notEnoughCoins: '&4You dont have enough %major_coinname% to send them to player %to_player%'
  63.   sendToYourself: '&4You cant send money to yourself!'
  64.   sentCoins: '&6You sent player %to_player%: %amount_major% %major_coinname% %amount_minor% %minor_coinname%'
  65.   receivedCoins: '&6You got money from %from_player%! %amount_major% %major_coinname% %amount_minor% %minor_coinname%'
  66.   balanceDoesntHaveCurrency: '&4You dont have any money in that currency!'
  67.   gaveCoins: '&6You gave player %to_player% %amount_major% %major_coinname% %amount_minor% %minor_coinname%'
  68.   takeCoins: '&6You took player %to_player% %amount_major% %major_coinname% %amount_minor% %minor_coinname%'
  69.   setCoins: '&6You set player %to_player% %major_coinname% to %amount_major% %major_coinname% %amount_minor% %minor_coinname%'
  70.   exchangeCoins: '&2You exchanged &6%major_coinname% %amount_major%.%amount_minor% &2to &6%other_coinname_maj%'
  71.   help:
  72.    - '&7> &6/mcoins help - Shows help'
  73.     - '&7> &6/mcoins bal/balance [player] [coinname] - Shows balance'
  74.     - '&7> &6/mcoins top [coinname] - Shows TOP list'
  75.     - '&7> &6/mcoins pay/send <player> <amount> <coinname> - Sends player amount of coin'
  76.   # Don't have to add line for each currency, first line is header, sec. is style for each currency balance
  77.   balanceAll:
  78.    - '&6%player% s balance'
  79.     - '&a%major_coinname%&e: &d%amount_major%%major_symbol% %amount_minor%%minor_symbol%'
  80.   balanceCurrency: '&a%major_coinname%&e: &d%amount_major%%major_symbol% %amount_minor%%minor_symbol%'
  81.  
  82. topList:
  83.  # Amount of players on top list
  84.   players: 10
  85.   style:
  86.     header: '&aTOP &b%major_coinname%'
  87.     other: '&6%number%. &a%player_name% -- %amount%'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement