Advertisement
Guest User

Untitled

a guest
Aug 19th, 2017
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.34 KB | None | 0 0
  1. ##
  2. #Plugin: BankAccount
  3. #Author: TAT
  4. #CONFIGURATION
  5. ##
  6.  
  7. ##
  8. #SQL Settings
  9. # Transaction: true = save transactions in table // false = don't save transactions
  10. # MySQL: true = database (MySQL) // false = flatfile (SQLite)
  11. # Host: [ONLY MySQL] Server IP or address to MySQL server (Same as Minecraft server: localhost)
  12. # Port: [ONLY MySQL] Server port to MySQL server (Default: 3306)
  13. # User: [ONLY MySQL] Username to MySQL
  14. # Pass: [ONLY MySQL] Password to MySQL
  15. # Database: [ONLY MySQL] Database where the data must be saved
  16. ##
  17. SQL-info:
  18. Transactions: true
  19. MySQL: false
  20. Host: localhost
  21. Port: 3306
  22. User: root
  23. Pass: password
  24. Database: minecraft
  25.  
  26. ##
  27. #Config: SQL-tables (Account / Area / Loan / Transaction)
  28. #Doing: Names of SQL tables
  29. ##
  30. SQL-tables:
  31. Account: bankaccounts
  32. Area: bankareas
  33. Loan: bankloans
  34. Transaction: banktransactions
  35.  
  36. ##
  37. #Permissions settings (Permission plugins and other permission configs)
  38. # OP: true = use OP // false = don't use OP
  39. # Permissions: true = use Permissions // false = don't use Permissions
  40. # GroupManager: true = use GroupManager // false = don't use GroupManager
  41. # SuperAdmins: true = admins have access to all accounts // false = admins only have access to own accounts
  42. # DepositAll: true = players can deposit to all accounts // false = players can only deposit to own accounts (players must have permission to deposit)
  43. ##
  44. Permissions:
  45. OP: false Permissions true
  46. GroupManager: false
  47. SuperAdmins: false
  48. DepositAll: true
  49.  
  50. ##
  51. #Config: Areas
  52. #Doing: Is it possible to use commands global or in specific areas (example: banks or trade areas)?
  53. # Active: true = specific areas // false = global
  54. # AreaWandId: [Require areas enabled] 339 (Paper) // Other item ID
  55. # MultipleBanks: [Require areas enabled] true = there is multiple banks // false = there is only one bank
  56. ##
  57. Areas:
  58. Active: true AreaWandId 339
  59. MultipleBanks: false
  60.  
  61. ##
  62. #Interest settings
  63. # Time is in minutes
  64. # Amount is % of account balance added to every account
  65. ##
  66. Interest:
  67. Time: 60
  68. Amount: 1
  69.  
  70. ##
  71. #Loan settings
  72. # Active: true = activate // false = deactivate
  73. # Fixed-rate: 0 = no fixed rate // > 0 = fixed rate set to value
  74. # Rate: Variable rates after amount loaned (only if fixed-rate is set to zero)
  75. # Example: 0.01: 0.05
  76. # 50.01: 0.10
  77. # Loans from 0.01 => 50.00 there there will be a rate on 0.05
  78. # Loans from 50.01 => Max_amount there will be a rate on 0.10
  79. # Max-amount: 0.00 = No limit // > 0.00 = Highest amount that can be borrowed at a time (Note: only 1 loan at a time)
  80. # Payment-time: 0 = No deadline // > 0 = Deadline x minutes after loan taken (20 minutes = 1 Minecraft day)
  81. # Payment-parts: Split the payment up in x parts
  82. # Example: Payment-time: 60, Payment-parts: 3
  83. # The money must be paid back after 60 minutes (3 Minecraft days)
  84. # The money will be split in 3 parts and after 60/3 = 20 minutes (1 Minecraft day) the first part will be paid automatically
  85. ##
  86. Loan:
  87. Active: true Fixed-rate 0.00
  88. Rate:
  89. 0.01: 0.05
  90. 50.01: 0.10
  91. 100.01: 0.30
  92. 200.01: 0.50
  93. Max-amount: 200
  94. Payment-time 0 Payment-parts: 3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement