- 积分
- 26614
- 帖子
- 主题
- 精华
贡献- 份
爱心- 心
- 钻石
- 颗
- 人气
- 点
- 下界之星
- 枚
- 最后登录
- 1970-1-1
- 注册时间
- 2016-8-31
来自:浙江 | 这就不是你Ess能管得到的事情了,这是Authme的事情。
- limbo:
- persistence:
- # Besides storing the data in memory, you can define if/how the data should be persisted
- # on disk. This is useful in case of a server crash, so next time the server starts we can
- # properly restore things like OP status, ability to fly, and walk/fly speed.
- # DISABLED: no disk storage,
- # INDIVIDUAL_FILES: each player data in its own file,
- # DISTRIBUTED_FILES: distributes players into different files based on their UUID, see below
- type: INDIVIDUAL_FILES
- # This setting only affects DISTRIBUTED_FILES persistence. The distributed file
- # persistence attempts to reduce the number of files by distributing players into various
- # buckets based on their UUID. This setting defines into how many files the players should
- # be distributed. Possible values: ONE, FOUR, EIGHT, SIXTEEN, THIRTY_TWO, SIXTY_FOUR,
- # ONE_TWENTY for 128, TWO_FIFTY for 256.
- # For example, if you expect 100 non-logged in players, setting to SIXTEEN will average
- # 6.25 players per file (100 / 16).
- # Note: if you change this setting all data will be migrated. If you have a lot of data,
- # change this setting only on server restart, not with /authme reload.
- distributionSize: SIXTEEN
- # Whether the player is allowed to fly: RESTORE, ENABLE, DISABLE, NOTHING.
- # RESTORE sets back the old property from the player. NOTHING will prevent AuthMe
- # from modifying the 'allow flight' property on the player.
- restoreAllowFlight: RESTORE
- # Restore fly speed: RESTORE, DEFAULT, MAX_RESTORE, RESTORE_NO_ZERO.
- # RESTORE: restore the speed the player had;
- # DEFAULT: always set to default speed;
- # MAX_RESTORE: take the maximum of the player's current speed and the previous one
- # RESTORE_NO_ZERO: Like 'restore' but sets speed to default if the player's speed was 0
- restoreFlySpeed: RESTORE_NO_ZERO
- # Restore walk speed: RESTORE, DEFAULT, MAX_RESTORE, RESTORE_NO_ZERO.
- # See above for a description of the values.
- restoreWalkSpeed: RESTORE_NO_ZERO
复制代码 设置 restoreAllowFlight: 为 DISABLE |
|