Make your server display hardcore hearts in survival
Commands
- /hardcorehearts : display plugin infos
- /hardcorehearts reload : reload the plugin
Features
- 2 modes : packets & resource-pack
- Included resource-pack
- Auto-configured & included web server for resource-pack hosting
Configuration Examples
Plugin is configured by default to use resource-pack with integrated web server on port 8082, you may want to use ProtocolLib or another web hosting service, here are some configuration examples :
Packet mode config, require ProtocolLib :
Code (YAML):
method
: packets
# not used when using packet mode
resource-pack:
host
: plugin
url
:
""
# not used when using packet mode
web-server-config:
url-override
: false
port
: 0
socket-backlog
: 0
Resource-pack config, using plugin's web server :
Code (YAML):
method
: resource-pack
resource-pack:
host
: plugin
url
:
""
# not used
# not used when using packet mode
web-server-config:
url-override
: false
port
: 8082
socket-backlog
: 8
Resource-pack config, using plugin's web server with custom ip :
Code (YAML):
method
: resource-pack
resource-pack:
host
: plugin
url
:
"http://127.0.0.1:8082"
# not used when using packet mode
web-server-config:
url-override
: true
port
: 8082
socket-backlog
: 8
Resource-pack config, using another host :
Code (YAML):
method
: resource-pack
resource-pack:
host
: custom-url
url
:
"https://my-file-host.example/resource_pack.zip"
# not used when using custom url
web-server-config:
url-override
: false
port
: 0
socket-backlog
: 0