Guest User

Untitled

a guest
Mar 6th, 2018
386
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 4.39 KB | None | 0 0
  1. # iConomy 5.0
  2. # %author     Nijikokun <nijikokun@gmail.com>
  3. # %license    GPLv2
  4. # %copyright  Copyright AniGaiku LLC (C) 2010-2011
  5. ##
  6. # Setup Notes
  7. #   - Default
  8. #     This node consists of all the 'default' data.
  9. #   - Formatting
  10. #     Allows you to control the output of how you will
  11. #     see the currency in-game with the major/minor features.
  12. #   - Banking
  13. #     Allows users to store money in a seperate location as
  14. #     well as transfer from bank to bank between users
  15. #     - Multiple
  16. #       Allows users to create multiple accounts with banks
  17. #     - Q & A
  18. #       Q: Why?
  19. #       A: Money on hand can be lost, money in banks should not
  20. #           be altered upon plugin specifictions in iConomy 5.0
  21. #   - Interest amount is done in seconds.
  22. #     - Online
  23. #       If only true, only one bank / account will recieve money for that player.
  24. #       If only false, it will go through each bank / account and deposit money.
  25. #     - Announce
  26. #       Sends message each time a player recieves money.
  27. #     - Amount
  28. #       - On
  29. #         Each time interest runs you can either deposit the money into a bank (Interest)
  30. #         or directly into a players holdings (Wage).
  31. #     - Interval
  32. #       - Seconds
  33. #         Basic Table:
  34. #           1 minute = 60 seconds
  35. #           1 hour = 1 minute * 60 = 3600 seconds
  36. #           1 day = 1 hour * 24 = 86400 seconds
  37. #           1 week = 1 day * 7 = 604800 seconds
  38. #   - Database
  39. #     - Type
  40. #       Can only be h2 or MySQL, no longer supports SQLite.
  41. #     - Settings
  42. #       If you choose h2, only the first two are needed, do not alter MySQL.
  43. #       - MySQL
  44. #         Do not use remote databases from free sites, please use either a
  45. #          remote database from a personal hosted VPS or DEDI or a local
  46. #          database. This will prevent any 'timeout' or 'invalid settings'
  47. #          or 'cannot connect to database' issues. Thank you :)!
  48. ##
  49.  
  50. System:
  51.     Default:
  52.         Currency:
  53.             Major: [ 'TK', 'TKs' ]                # Major ([Major].Minor) 1.00 Dollar (With Seperate 1 Dollar)
  54.             Minor: [ 'Gamersmafio', 'Gamersmafios' ]                    # Minor (Major.[Minor]) 0.23 Coins  (With Seperate 0 Dollars, 23 Coins)
  55.         Account:
  56.             Holdings: 350.0                          # Default holdings on hand upon join / creation.
  57.         Bank:
  58.             Name: Banca
  59.             Currency:
  60.                 Major: [ 'Gamersmafio', 'Gamersmafios' ]
  61.                 Minor: [ 'Gamersmafio', 'Gamersmafios' ]
  62.             Account:
  63.                 Fee: 20.0                               # Default cost to register an account
  64.                 Holdings: 350.0                        # Default initial account holdings
  65.     Formatting:
  66.         Minor: false                                  # Example (true) 0.23 Coins and 1.23 Dollars (false) 0.23 Dollars and 1.23 Dollars
  67.         Seperate: false                               # Example (true) 1 Dollar, 23 Coins (false) 1.23 Dollars (Only if Minor is true)
  68.     Logging:
  69.         Enabled: true                               # Logs transactions done inside iConomy only, other plugins must utilize the api. (Logs to SQL)
  70.     Banking:
  71.         Enabled: false
  72.         Accounts:
  73.             Multiple: true
  74.     Interest:
  75.         Enabled: false
  76.         Online: true                                  # Only give to players who are online?
  77.         Announce:
  78.             Enabled: false
  79.         Interval:
  80.             Seconds: 60
  81.         Amount:
  82.             Cutoff: 0.0                               # Amount limit to be met until we stop giving interest. (0.0 for no limit)
  83.             On: 'Players'                             # Banks or Players
  84.             Percent: 0.0                              # Percent of holdings to give / take (Negative to take) (Overrides Min/Max)
  85.             Maximum: 1                                # (Range) Maximum amount for random in between. (Make Max/Min equal for a flat-rate amount ie: 5/5)
  86.             Minimum: 2                                # (Range) Minimum amount for random in between.
  87.     Database:
  88.         Type: 'MySQL'                                 # H2 or MySQL
  89.         Settings:
  90.           Name: 'minecraft'
  91.           Table: 'iConomy'
  92.           MySQL:
  93.               Username: '***********************'
  94.               Password: '********************'
  95.               Hostname: '*************************
  96.               Port: ************
Add Comment
Please, Sign In to add comment