Schiarizzi

config ibank

Jul 26th, 2013
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.32 KB | None | 0 0
  1. # iBank Sample Configuration for SQLite
  2. System:
  3. Debug: false
  4. # If iBank is enabled
  5. Enabled: true
  6. # If direct/sign banking will be supported
  7. # To set this signs , permission iBank.sign will be needed
  8. SignSupport: true
  9. # Regions enabled?
  10. # If this is set to false, all commands can be executed globally
  11. # If not, some commands can only be executed in a region
  12. BoundToRegion: true
  13. # The balance a new account will have
  14. StandardBalance: 0
  15. # The selection tool for regions
  16. # Right-click first position
  17. # Left-click second position
  18. # 280 , itemid, => Stick
  19. SelectionTool: 280
  20. # Describes the max accounts a user can create
  21. # -1 = unlimited
  22. MaxAccountsPerUser: 1
  23. # Allow users to buy regions (if activated, users with permission get it for free)
  24. AllowBuyRegions: false
  25. # Realistic Mode
  26. # Allows to specify an account which will act as bank account
  27. # All money which is loaned or payed back from a loan will come (or end) on this account
  28. # If negative amounts are supported, they will be allowed (unless the specified maximum is reached (if specified))
  29. # If not, loans won't be possible until the bank got enough money on this account
  30. RealisticMode:
  31. # Whether to enable this account
  32. Enabled: true
  33. # Whether to use an iBank account as bank account or an economy account
  34. useiBank: true
  35. # Whether to use negative amounts if possible
  36. negative: false
  37. # Maximal negative amounts (use 0 for infinite) (DONT GIVE NEGATIVE AMOUNTS, if you gave 10000 iBank won't allow amounts below -10000) -9999 > -10000 > -10001
  38. maxNegative: 1
  39. # The name of the bank account (the account to be used by iBank)
  40. account: bank
  41. # The price
  42. RegionsPrice: 12000
  43. Fee:
  44. # The Fee for creating an account
  45. # In this case the first account is free
  46. # The second is 1% of it's money
  47. # The third and everyone after is 2% of it's money
  48. # create: '40.00;70.00;1000.00'
  49. # In this case the first is 40 , second is 70 and third and everyone after 70
  50. # create: '0.00%;1.00%+40;2.00%+100
  51. # In this case the first is free, The second is 1% but at least 40,
  52. # The third is 2% but at least 100
  53. Create: '0.00%;1.00%;2.00%'
  54. # The amount which will be substracted while depositing ; % or Amount
  55. Deposit: '0.00%'
  56. # The amount which will be substracted while withdrawing ; % or Amount
  57. Withdraw: '0.00'
  58. # The amount which will be substracted while transferring ; % or Amount
  59. Transfer: '0.00'
  60. Loan:
  61. # Whether to enable Loan
  62. Enabled: true
  63. # Max Loans per Time
  64. Max: 1
  65. # Time in Minutes, User has to pay-back
  66. Time: 600
  67. # Max Amount per Loan
  68. Amount: 25000
  69. # The default percentage he has to pay additionally
  70. DefaultInterest: 4
  71. # The interval where his interest will be added (in minutes)
  72. DefaultInterestTime: 60
  73. # If time is over, get Interest to pay for the Loan
  74. forceInterest: true
  75. # If time is over, try to get money from user
  76. forceMoney: true
  77. # If time is over, try to get money from accounts where he's owner
  78. forceBank: true
  79. Interest:
  80. # Whether to enable interest?
  81. Enabled: true
  82. Percentages:
  83. # The percentage the player will receive if he's logged in
  84. Online: 0.001
  85. # The percentage the player will receive if he's not logged in
  86. Offline: 0.00005
  87. # The default period between the interests given to the user, in minutes
  88. Period: 300
  89. # How many people which belong to the account need to be online
  90. # 0 => Nobody needs to
  91. Online: 1
  92. Database:
  93. # The type of the database
  94. # Valid types: sqlite,mysql
  95. Type: 'sqlite'
  96. # Host or filename to the server
  97. # Example: test.db or localhost:1234
  98. Url: 'bank.db'
  99. # For systems which need either dbname, dbuser or dbpassword
  100. Database: 'bank'
  101. User: ''
  102. Password: ''
  103. # The name of the tables
  104. Tables:
  105. # The name of the region table
  106. Region: 'regions'
  107. # The name of the accounts table (bankaccounts)
  108. Accounts: 'accounts'
  109. # The name of the loan table
  110. Loan: 'loans'
Add Comment
Please, Sign In to add comment