Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Set to false to reset configuration
- t: true
- cell:
- # The cell world is the name of the world in which all cells are contained.
- # the world is automatically created by the plugin using a custom void world generator, do not use the
- # name of an already generated world.
- world_name: "world_cell"
- # Block size is the size of each individual 'block'. A block contains one player's cell and also the area around it.
- # 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.
- # Measured in chunks
- block_size: 8
- # how long until a cell is purged from the cache, relative to last read
- # measured in miliseconds (1000 ms is 1 second)
- cache_ttl: 900000
- # Default cell info
- fragment_name: "default.fragment"
- place_height: 70
- # The position relative to origin in which the default warp position is
- relative_tp_x: 0
- relative_tp_y: 0
- relative_tp_z: 0
- # How long an invite lasts for in miliseconds
- invite_expiry_ms: 900000
- # the interval between the execution of the cleanup task
- invite_expiry_check_ms: 60000
- # where to tp when players are in an invalid place (ex: inside a cell when it is destroyed)
- default_tp_x: 0
- default_tp_y: 128
- default_tp_z: 0
- default_tp_world: world
- levels:
- level_1:
- size: 16
- max_members: 4
- balance_price: 0
- tokens_price: 0
- level_2:
- size: 32
- max_members: 8
- balance_price: 1000
- tokens_price: 10
- level_3:
- size: 64
- max_members: 16
- balance_price: 10000
- tokens_price: 100
- level_4:
- size: 128
- max_members: 32
- balance_price: 1000000
- tokens_price: 1000
- value:
- initial_balance_price: 100
- initial_tokens_price: 10
- # How much the price increases every 100 levels
- balance_increment: 50
- tokens_increment: 50
- user:
- # how long until a user is purged from the cache
- # measured in ms
- cache_ttl: 900000
- # get the maximum amount of cells a user can be a member of (including ownership)
- user_cells_max: 8
- # get the maximum amount of cells a user can be the owner of
- user_cells_owned_max: 1
- fragment:
- # How many blocks are processed per tick when saving fragments
- save_bpt: 8
- data_store:
- method: "sql_hikari"
- config:
- serverName: "localhost"
- portNumber: 3308
- databaseName: "cells2"
- user: "root"
- password: "pass"
Advertisement
Add Comment
Please, Sign In to add comment