amitay12123

Untitled

Feb 22nd, 2020
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.84 KB | None | 0 0
  1. # Set to false to reset configuration
  2. t: true
  3.  
  4. cell:
  5. # The cell world is the name of the world in which all cells are contained.
  6. # the world is automatically created by the plugin using a custom void world generator, do not use the
  7. # name of an already generated world.
  8. world_name: "world_cell"
  9.  
  10. # Block size is the size of each individual 'block'. A block contains one player's cell and also the area around it.
  11. # The block size should optimally be the render distance of the world multiplied by two plus the maximum size of the cell when it is fully upgraded.
  12. # Measured in chunks
  13. block_size: 8
  14.  
  15. # how long until a cell is purged from the cache, relative to last read
  16. # measured in miliseconds (1000 ms is 1 second)
  17. cache_ttl: 900000
  18.  
  19. # Default cell info
  20. fragment_name: "default.fragment"
  21. place_height: 70
  22.  
  23. # The position relative to origin in which the default warp position is
  24. relative_tp_x: 0
  25. relative_tp_y: 0
  26. relative_tp_z: 0
  27.  
  28. # How long an invite lasts for in miliseconds
  29. invite_expiry_ms: 900000
  30.  
  31. # the interval between the execution of the cleanup task
  32. invite_expiry_check_ms: 60000
  33.  
  34.  
  35. # where to tp when players are in an invalid place (ex: inside a cell when it is destroyed)
  36. default_tp_x: 0
  37. default_tp_y: 128
  38. default_tp_z: 0
  39.  
  40. default_tp_world: world
  41.  
  42. levels:
  43. level_1:
  44. size: 16
  45. max_members: 4
  46.  
  47. balance_price: 0
  48. tokens_price: 0
  49. level_2:
  50. size: 32
  51. max_members: 8
  52.  
  53. balance_price: 1000
  54. tokens_price: 10
  55. level_3:
  56. size: 64
  57. max_members: 16
  58.  
  59. balance_price: 10000
  60. tokens_price: 100
  61. level_4:
  62. size: 128
  63. max_members: 32
  64.  
  65. balance_price: 1000000
  66. tokens_price: 1000
  67. value:
  68. initial_balance_price: 100
  69. initial_tokens_price: 10
  70.  
  71. # How much the price increases every 100 levels
  72. balance_increment: 50
  73. tokens_increment: 50
  74.  
  75. user:
  76. # how long until a user is purged from the cache
  77. # measured in ms
  78. cache_ttl: 900000
  79.  
  80. # get the maximum amount of cells a user can be a member of (including ownership)
  81. user_cells_max: 8
  82.  
  83. # get the maximum amount of cells a user can be the owner of
  84. user_cells_owned_max: 1
  85.  
  86. fragment:
  87. # How many blocks are processed per tick when saving fragments
  88. save_bpt: 8
  89.  
  90. data_store:
  91. method: "sql_hikari"
  92. config:
  93.  
  94. serverName: "localhost"
  95. portNumber: 3308
  96. databaseName: "cells2"
  97.  
  98. user: "root"
  99. password: "pass"
Advertisement
Add Comment
Please, Sign In to add comment