Quick Start Configuration - GreenSurvivors/LockettePro GitHub Wiki

Quick start guide for LockettePro. This page will briefly guides you how to configure LockettePro.

1. Edit lang file
Some people finds that the plugin is ranting too much while using is doing stuff. Go to the lang file and leave a message empty will prevent message from showing up. For instance:

you-can-quick-lock-it: ""    

2. Dealing with Hopper Stealing
There are two ways you may choose from.
The first way is to allow hoppers from taking items in or out of the chests, but not allowing unauthorized players from placing hoppers near a locked chest. Use the following config:

block-interfere-placement: true
block-item-transfer-in: false
block-item-transfer-out: false
block-hopper-minecart: remove  

The second way is to prevent hoppers from taking items in or out of the chests, but allowing unauthorized players to place hoppers near a locked chest. Use the following config:

block-interfere-placement: false
block-item-transfer-in: true
block-item-transfer-out: true
block-hopper-minecart: remove  

3. For server with lower performance, enable cache
A server with excessive amount of hopper will potentially impact the performance due to hopper lock checking. Cache system will potentially lower the lock check by creating a temporary cache (in game memory, inconsistent, will lose upon chunk unload or server restart) to record whether a block is locked. Do not use if not necessary.
Recommended value is:

cache-time-seconds: 10