UltimateUIDocs
Archived upstream docs · Features depend on the installed plugin version; not all features have been verified.

UltimateUI guide

How to Change UI Behavior

In this guide, you will learn how to change the UI behavior.

You can customize how the UI behaves after specific actions. The behavior settings can be configured at the very top of the .yml file.

ini
behavior:
  keep-open: false
  reopen: true
  close-on-death: false
  close-on-damage: false
  close-on-f: false
  close-on-shift-f: true

Below is a list of several settings you can change in the UI.

Keep Open#

This option prevents the UI from closing when another UI is opened.

ini
behavior:
  keep-open: true

Reopen#

This option reopens the previous UI after the currently opened UI is closed.

ini
behavior:
  reopen: true

Close on Death#

This option closes the UI when the player dies.

ini
behavior:
  close-on-death: true

Close on Damage#

This option works similarly to the previous one, but it closes the UI when the player takes damage.

ini
behavior:
  close-on-damage: true

Close on key#

This option allows the UI to be closed by pressing F or Shift + F.

ini
behavior:
  close-on-f: true
  close-on-shift-f: true