Advertisement
Guest User

Untitled

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