Display Type

Configure the default display type.

In Vitalo, there are two different display types. Look and static. Players can choose between the two with the display type command. You can disable players changing their display type by toggling can-change-display-type in the config.

Here is what a typical config would look like:

config.yml
can-change-display-type: true
default-display-type: look
static:
  max-distance: 15
look:
  max-distance: 50
  • can-change-display-type: Whether or not to allow players to change their display type.

  • default-display-type: The default display type for a player who has not changed theirs, either look, static, or none.

  • static:

    • max-distance: The max distance an entities health will be shown at.

  • look:

    • max-distance: The max distance an entities health will be shown at.

Look

Look is a raytrace based system, where Vitalo only shows the health above an entity when it is being looked at by a player. You can configure the max distance through the configuration section found in the generated config as shown above.

Static

Static is a more simplified system, where it shows all entities health at all times. Switch between the two with the display-type config value in either the default profile or entity profiles.

None

If you wish to by default show no health over an entities head, then choose the "none" option.

Last updated