Guest User

Updated BankCraft Config

a guest
Jun 11th, 2014
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.04 KB | None | 0 0
  1. # default config.yml for Bankcraft
  2.  
  3.  
  4. database:
  5. #Maximum amount of threads that Bankcraft can use to perform banking operations (default:4)
  6. maximumThreads: 4
  7.  
  8. #Database in which bankcraft stores information (allowed: flatfile/mysql)
  9. typeOfDatabase: flatFile
  10.  
  11. #Migrate database from Names to UUIDs
  12. updateToUUID: true
  13.  
  14.  
  15. general:
  16.  
  17. #Swap left and right click interactions (false/true)
  18. swapClicks: true
  19.  
  20. #Maximum amount of money/xp on players accounts
  21. maxBankLimitMoney: 500000
  22. maxBankLimitXp: 500000
  23.  
  24. #Maximum amount of money/xp in players pockets
  25. maxPocketLimitMoney: 500000
  26. maxPocketLimitXp: 500000
  27.  
  28. #Maximum amount of money/xp that player can borrow from the bank
  29. maxLoanLimitMoney: 0
  30. maxLoanLimitXp: 0
  31.  
  32. #Group that the player gets put in if he has borrowed money (if useLoanGroup is true) deactivate this by setting useLoanGroup to false
  33. useLoanGroup: false
  34. loanGroup: debitor
  35.  
  36. #Should a player that is in debt be reminded on login? (true = yes/ false = no)
  37. remindDebitorOnLogin: false
  38.  
  39.  
  40. #Amount of time a player has to wait between two command or sign interactions (in 1/1000th of a second)
  41. timeBetweenTwoInteractions: 300
  42.  
  43. #Exchangerate for the exchange from money to experience and visa versa
  44. exchangerateFromMoneyToXp: 0.5
  45. exchangerateFromXpToMoney: 2
  46.  
  47. #Enable automated exit of ChatInteract-Signs when leaving an area (can cause lag on big servers)
  48. enableAutoExitSigns: true
  49. secondsBetweenPlayerPositionChecks: 5
  50. maximumRange: 20
  51.  
  52. interest:
  53. #Interest granted on money/experience if the player is online/offline
  54. interestOnMoneyIfOnline: 0.01
  55. interestOnMoneyIfOffline: 0.005
  56. interestOnXpIfOnline: 0.01
  57. interestOnXpIfOffline: 0.005
  58.  
  59. #Interest charged on money/experience if the player is online/offline and is in debt
  60. interestOnMoneydebtsIfOnline: 0.0005
  61. interestOnMoneydebtsIfOffline: 0.0001
  62. interestOnXpdebtsIfOnline: 0.001
  63. interestOnXpdebtsIfOffline: 0.0002
  64.  
  65. #Time until interests are given
  66. timeBetweenInterestsInMinutes: 60
  67.  
  68. #Should it be logged if interests are granted
  69. broadcastToConsole: false
  70.  
  71. #Should the player get a message if he got interests?
  72. broadcastMoney: true
  73. broadcastXp: true
  74.  
  75. #Ingame messages
  76. message:
  77. createdSignSuccessfully: 'Created sign succesfully!'
  78. notAllowed: 'You are not allowed to do this!'
  79. removedSignSuccessfully: 'Sign removed!'
  80. errorWhileCreatingSign: 'Could not create Sign!'
  81. balance: '%player2: %balance Dollars!'
  82. balancexp: '%player2: %balanceXp Experience!'
  83. amountAddedSuccessfullyToSign: 'Added %amount to Sign!'
  84. transferedSuccessfully: 'Transfered %amount Dollars from %player to %player2!'
  85. transferedSuccessfullyXp: 'Transfered %amount Experience from %player to %player2!'
  86. depositedSuccessfully: 'Deposited %amount Dollar successfully!'
  87. reachedMaximumMoneyInAccount: 'Reached Accountlimit! (Money)'
  88. notEnoughMoneyInPoket: 'You dont have %amount money in your pocket!'
  89. withdrewSuccessfully: 'Withdrew %amount Dollar successfully!'
  90. reachedMaximumMoneyInPocket: 'Reached Limit of money you can carry around!'
  91. notEnoughMoneyInAccount: 'You dont have %amount money in your account'
  92. accountDoesNotExist: 'Account %player2 does not exist!'
  93. grantedInterestOnMoney: 'You just got %amount Dollar interest on your account!'
  94. couldNotGrantInterestOnMoney: 'Could not grant interest! Accountlimit reached! (Money)'
  95. depositedSuccessfullyXp: 'Deposited %amount Experience successfully!'
  96. reachedMaximumXpInAccount: 'Reached Accountlimit! (XP)'
  97. notEnoughXpInPoket: 'You dont have %amount xp in your pocket!'
  98. withdrewSuccessfullyXp: 'Withdrew %amount Experience successfully!'
  99. reachedMaximumXpInPocket: 'Reached Limit of xp you can carry around!'
  100. notEnoughXpInAccount: 'You dont have %amount xp in your account'
  101. grantedInterestOnXp: 'You just got %amount Experience interest on your account!'
  102. couldNotGrantInterestOnXp: 'Could not grant interest! Accountlimit reached! (XP)'
  103. exchangedMoneySuccessfully: 'Exchanged %amount money for xp!'
  104. exchangedXpSuccessfully: 'Exchanged %amount xp for money!'
  105. interestTimer: 'Interests will be granted in %interestTimeRemaining minutes! Total time: %interestTimeTotal'
  106. nonExistingInteraction: 'This is not a valid interaction, please choose another.'
  107. wrongAmountSyntax: 'This is either not a number or an invalid amount, please choose something else.'
  108. specifyAnInteraction: 'Please type in the Interaction you wish to use.'
  109. specifyAnAmount: 'Please type in the amount you wish to do.'
  110. youHaveQuit: 'You have quit the interaction.'
  111. rankStatsMoney: 'Current richest players:%rankTableMoney'
  112. rankStatsExperience: 'Current experienced players:%rankTableExperience'
  113. debitor: 'You are currently in debt! Please make sure to pay your bills!'
  114. tooFastInteraction: 'You cant interact with Bankcraft this often. Please wait for a moment...'
  115. performingLookup: 'Performing lookup of this player in Minecraft Database! This can take a moment...'
  116.  
  117. signAndCommand:
  118. version: version
  119. help: help
  120. balance: balance
  121. balancexp: balancexp
  122. deposit: deposit
  123. withdraw: withdraw
  124. depositxp: depositxp
  125. withdrawxp: withdrawxp
  126. exchange: exchange
  127. exchangexp: exchangexp
  128. interesttimer: interesttimer
  129. chatinteract: chatinteract
  130. transfer: transfer
  131. transferxp: transferxp
  132. rankstats: rankstats
  133. rankstatsxp: rankstatsxp
  134. signColor: 3
  135. admin:
  136. help: help
  137. clear: clear
  138. clearxp: clearxp
  139. set: set
  140. setxp: setxp
  141. grant: grant
  142. grantxp: grantxp
  143. databaseimport: databaseimport
  144. reloadconfig: reloadconfig
  145. chat:
  146. #prefix for all Bankcraft messages
  147. prefix: '[Bankcraft]'
  148. #Color of these
  149. color: 3
  150. #Word which stops the interaction with a interaction sign
  151. quit: quit
  152. #amount of players that are shown in the rank tables
  153. rankTableLength: 5
Add Comment
Please, Sign In to add comment