Advertisement
Guest User

Untitled

a guest
Sep 16th, 2017
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.31 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: true
  20. Host: localhost
  21. Port: 3306
  22. User:
  23. Pass:
  24. Database:
  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: true
  46. Permissions: true
  47. GroupManager: false
  48. SuperAdmins: true
  49. DepositAll: false
  50.  
  51. ##
  52. #Config: Areas
  53. #Doing: Is it possible to use commands global or in specific areas (example: banks or trade areas)?
  54. # Active: true = specific areas // false = global
  55. # AreaWandId: [Require areas enabled] 339 (Paper) // Other item ID
  56. # MultipleBanks: [Require areas enabled] true = there is multiple banks // false = there is only one bank
  57. ##
  58. Areas:
  59. Active: true
  60. AreaWandId: 339
  61. MultipleBanks: false
  62.  
  63. ##
  64. #Interest settings
  65. # Time is in minutes
  66. # Amount is % of account balance added to every account
  67. ##
  68. Interest:
  69. Time: 1440
  70. Amount: 1
  71.  
  72. ##
  73. #Loan settings
  74. # Active: true = activate // false = deactivate
  75. # Fixed-rate: 0 = no fixed rate // > 0 = fixed rate set to value
  76. # Rate: Variable rates after amount loaned (only if fixed-rate is set to zero)
  77. # Example: 0.01: 0.05
  78. # 50.01: 0.10
  79. # Loans from 0.01 => 50.00 there there will be a rate on 0.05
  80. # Loans from 50.01 => Max_amount there will be a rate on 0.10
  81. # Max-amount: 0.00 = No limit // > 0.00 = Highest amount that can be borrowed at a time (Note: only 1 loan at a time)
  82. # Payment-time: 0 = No deadline // > 0 = Deadline x minutes after loan taken (20 minutes = 1 Minecraft day)
  83. # Payment-parts: Split the payment up in x parts
  84. # Example: Payment-time: 60, Payment-parts: 3
  85. # The money must be paid back after 60 minutes (3 Minecraft days)
  86. # The money will be split in 3 parts and after 60/3 = 20 minutes (1 Minecraft day) the first part will be paid automatically
  87. ##
  88. Loan:
  89. Active: false
  90. Fixed-rate: 0.00
  91. Rate:
  92. 0.01: 0.05
  93. 50.01: 0.10
  94. 100.01: 0.30
  95. 200.01: 0.50
  96. Max-amount: 200
  97. Payment-time: 60
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement