Guest User

Untitled

a guest
Jan 21st, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.64 KB | None | 0 0
  1. ##
  2. #Plugin: BankAccount
  3. #Author: TAT
  4. #CONFIGURATION
  5. ##
  6.  
  7. ##
  8. #Config: UseMySQL
  9. #Example: true = MySQL // false = SQLite (flatfile)
  10. ##
  11. UseMySQL: false
  12.  
  13. ##
  14. #Config: Transactions
  15. #Doing: Save transactions in table
  16. #Example: true = activate // false = deactivate
  17. ##
  18. Transactions: true
  19.  
  20. ##
  21. #Informations to your MySQL connection
  22. #Only if you're using MySQL (Set in UseMySQL)
  23. ##
  24. MySQL-info:
  25. Host: localhost
  26. Port: 3306
  27. User: root
  28. Pass: password
  29. Database: minecraft
  30.  
  31. ##
  32. #Config: SQL-account-table / SQL-area-table
  33. #Doing: Names of account and area table
  34. ##
  35. SQL-account-table: bankaccounts
  36. SQL-area-table: bankareas
  37. SQL-loan-table: bankloans
  38. SQL-transaction-table: banktransactions
  39.  
  40. ##
  41. #Config: UseOP / UsePermissions
  42. #Doing: Use OP, Permissions and/or GroupManager(FakePermissions) to get admins
  43. #Example: true = activate // false = deactivate
  44. ##
  45. UseOP: true
  46. UsePermissions: false
  47. UseGroupManager: false
  48.  
  49. ##
  50. #Config: SuperAdmins
  51. #Doing: Give the admins power to access all accounts?
  52. #Example: true = activate // false = deactivate
  53. ##
  54. SuperAdmins: true
  55.  
  56. ##
  57. #Config: Global
  58. #Doing: Is it possible to use commands global or in specific areas?
  59. #Example: true = global // false = specific areas
  60. ##
  61. Global: true
  62.  
  63. ##
  64. #Config: AreaWandId
  65. #Doing: Item ID to selection of areas
  66. #Example: 339 = Paper
  67. ##
  68. AreaWandId: 339
  69.  
  70. ##
  71. #Interest settings
  72. #Time is in minutes
  73. #Amount is % of account balance added to every account
  74. ##
  75. Interest:
  76. Time: 5
  77. Amount: 0.1
  78.  
  79. ##
  80. #Loan settings
  81. #Active: true = activate // false = deactivate
  82. #Fixed-rate: 0 = no fixed rate // > 0 = fixed rate set to value
  83. #Rate: Variable rates after amount loaned (only if fixed-rate is set to zero)
  84. # Example: 0.01: 0.05
  85. # 50.01: 0.10
  86. # Loans from 0.01 => 50.00 there there will be a rate on 0.05
  87. # Loans from 50.01 => Max_amount there will be a rate on 0.10
  88. #Max-amount: 0.00 = No limit // > 0.00 = Highest amount that can be borrowed at a time (Note: only 1 loan at a time)
  89. #Payment-time: 0 = No deadline // > 0 = Deadline x minutes after loan taken (20 minutes = 1 Minecraft day)
  90. #Payment-parts: Split the payment up in x parts
  91. # Example: Payment-time: 60, Payment-parts: 3
  92. # The money must be paid back after 60 minutes (3 Minecraft days)
  93. # The money will be split in 3 parts and after 60/3 = 20 minutes (1 Minecraft day) the first part will be paid automatically
  94. ##
  95. Loan:
  96. Active: false
  97. Fixed-rate: 0.00
  98. Rate:
  99. 0.01: 0.05
  100. 50.01: 0.10
  101. 100.01: 0.30
  102. 200.01: 0.50
  103. Max-amount: 200
  104. Payment-time: 60
  105. Payment-parts: 3
Add Comment
Please, Sign In to add comment