Guest User

bank

a guest
Mar 4th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.41 KB | None | 0 0
  1. # default config.yml for MysqlEconomyBank
  2. # config version 1.8.0
  3.  
  4. database:
  5. #Type of database, Options: FlatFile or MySQL
  6. typeOfDatabase: FlatFile
  7. #MySQL database type connection details.
  8. mysql:
  9. host: 127.0.0.1
  10. port: 3306
  11. databaseName: 'mydatabase'
  12. tableName: 'meb_accounts'
  13. user: 'admin'
  14. password: 'cheesecake'
  15.  
  16. #General settings
  17. general:
  18. #Maximum amount of money on players accounts
  19. maxBankLimitMoney: 1000000000
  20. #Maximum amount of money in players pockets
  21. maxPocketLimitMoney: 1000000000
  22. #Amount of time in milliseconds (1 second = 1000 milliseconds) a player has to wait between two sign interactions.
  23. timeBetweenTwoInteractions: 200
  24. #Interest settings
  25. interest:
  26. #Enable bank accounts interest | (true or false)
  27. enabled: true
  28. #Interest amount in percentage. Example: 0.2% | 2% | 10%
  29. percentageAmount: 0.2%
  30. #Time between interest credit in minutes. (default 5 minutes)
  31. interestTime: 60
  32.  
  33. #Chat prefix and messages
  34. chatMessages:
  35. #Chat Prefix - Supports Color/Format codes - To disable the prefix set it like: prefix: ''
  36. #Color and Format codes: http://minecraft.gamepedia.com/Classic_server_protocol#Color_Codes
  37. prefix: '&3&l[Bank] '
  38.  
  39. #Chat Messages - Supports Color/Format codes.
  40. #The place holder %amount will get replaced by the money amount.
  41. #The place holder %player2 will get replaced by the players name.
  42. #To disable any chat message set it to '' Example: balance: ''
  43. createdSignSuccessfully: '&bPanneau creer avec succes!'
  44. notAllowed: '&bVous n avez pas la permission.'
  45. removedSignSuccessfully: '&bPanneau retire!'
  46. errorWhileCreatingSign: '&bVous ne pouvez pas creer de panneaux!'
  47. balance: '&b%player2:&7 €%balance'
  48. depositedSuccessfully: '&bDeposer &7€%amount &bavec succes!'
  49. reachedMaximumMoneyInAccount: '&bLimite de la Bank atteinte!'
  50. notEnoughMoneyInPoket: '&bVous n avez pas &7€%amount &bsur vous!'
  51. withdrewSuccessfully: '&bRetirer &7€%amount &bavec succes!'
  52. reachedMaximumMoneyInPocket: '&bVous avez atteint la limite d argent que vous pouvez porter.'
  53. notEnoughMoneyInAccount: '&bVous n avez pas &7€%amount &bdans votre banque.'
  54. accountDoesNotExist: '&7%player2 &bne possede pas de compte en banque!'
  55. tooFastInteraction: '&bVous ne pouvez pas interagir avec la banque (anti-spam). Merci de patienter un moment...'
  56. denyIfSneaking: '&bVous ne pouvez pas utiliser la banque en étant en "sneak".'
  57. noPermission: '&bVous n avez pas la permission.'
  58. reloadFail: '&bReload de la banque rate!'
  59. reloadComplete: '&bReload de la banque reussi!'
  60. balanceCommand: '&7%player2 &bbalance: &7€%amount'
  61. balanceCommandFail: '&bJoueur déconnecte ou UUID incorrecte!'
  62. setCommandFail: '&bLe montant doit être un nombre!'
  63. setCommand: '&7%player2 &bbalance mit à: &7€%amount'
  64. interest: '&bInterets de la banque ajoutes à votre compte: &7€%amount'
  65. interestCommand: '&bProchains interets dans:&7 %time'
  66. interestDisabled: '&cLes interets sont désactives!'
  67.  
  68. #Action Bar Messages - Requires TitleManager optional dependency.
  69. actionBarMessages:
  70. #Supports color and format codes.
  71. #The placeholder %bankBalance will be replaced with your bank balance.
  72. #The placeholder %pocketBalance will be replaced with your pocket balance.
  73. #To disable any of these messages set them to '' Example: balance: ''
  74.  
  75. #When performing deposit/withdraw operations the bank remaining balance will be displayed in an action bar message.
  76. balanceLeft: '&3&lArgents sur votre compte: &7€%bankBalance &f| &3&lArgents sur vous: &7€%pocketBalance'
  77. #When clicking the bank balance signs the balance will be displayed on action bar as well.
  78. balance: '&3&lArgents sur votre compte: &7€%bankBalance'
  79.  
  80. #Customize the bank signs
  81. signFormat:
  82. #Change the balance, deposit and withdraw words on signs, useful for other language translation
  83. #No color and format codes support here.
  84. balance: Compte
  85. deposit: Deposer
  86. withdraw: Retirer
  87. #Change the color of the first line on signs [Bank], note that this color only applies to the first line on signs.
  88. #Color codes are the same, but here you just remove the & in the front of color codes. Example: &3 => 3 ; Does not support format codes here.
  89. signColor: 3
Add Comment
Please, Sign In to add comment