Apollo
Developers
Mods
Tab

Tab Editor

Allows you to customize the in-game tab.

Integration

How to toggle the mod

public void toggleTabEditorExample(Player viewer, boolean value) {
    Optional<ApolloPlayer> apolloPlayerOpt = Apollo.getPlayerManager().getPlayer(viewer.getUniqueId());
    apolloPlayerOpt.ifPresent(apolloPlayer -> this.modSettingModule.getOptions().set(apolloPlayer, ModTab.ENABLED, value));
}

Available options

  • ENABLED

    • Config Key: enabled
    • Values
      • Type: Boolean
      • Default: true
  • TOGGLE_KEY_TAB

    • Quickly pressing and releasing the key will toggle tab
    • Config Key: toggle-key-tab
    • Values
      • Type: Boolean
      • Default: false
  • HEADER_COLOR

    • Config Key: header-color
    • Values
      • Type: String
      • Default: #80000000
  • FOOTER_COLOR

    • Config Key: footer-color
    • Values
      • Type: String
      • Default: #80000000
  • BACKGROUND_COLOR

    • Config Key: background-color
    • Values
      • Type: String
      • Default: #80000000
  • PING_ROW

    • Config Key: ping-row
    • Values
      • Type: Boolean
      • Default: false
  • ROWS_COLOR

    • Config Key: rows-color
    • Values
      • Type: String
      • Default: #20000000
  • DISABLE_HEADER

    • Config Key: disable-header
    • Values
      • Type: Boolean
      • Default: false
  • DISPLAY_PLAYER_HEAD

    • Config Key: display-player-head
    • Values
      • Type: Boolean
      • Default: true
  • DISABLE_FOOTER

    • Config Key: disable-footer
    • Values
      • Type: Boolean
      • Default: false
  • HIDE_NPC

    • Hide Hypixel NPC on tab
    • Config Key: hide-n-p-c
    • Values
      • Type: Boolean
      • Default: false
  • SHOW_LUNAR_ICONS_ON_RIGHT

    • Config Key: show-lunar-icons-on-right
    • Values
      • Type: Boolean
      • Default: false
  • HIGHLIGHT_OWN_NAME

    • Config Key: highlight-own-name
    • Values
      • Type: Boolean
      • Default: false
  • NAME_COLOR

    • Config Key: name-color
    • Values
      • Type: String
      • Default: #FFFF0000
  • NAME_SHADOW

    • Config Key: name-shadow
    • Values
      • Type: Boolean
      • Default: true
  • HIDE_PING

    • Config Key: hide-ping
    • Values
      • Type: Boolean
      • Default: false
  • HIDE_PING_IF_OVER_500

    • Config Key: hide-ping-if-over500
    • Values
      • Type: Boolean
      • Default: true
  • DISPLAY_PING_AS_NUMBER

    • Config Key: display-ping-as-number
    • Values
      • Type: Boolean
      • Default: false
  • DYNAMIC_PING_COLOR

    • Config Key: dynamic-ping-color
    • Values
      • Type: Boolean
      • Default: false
  • PING_NUMBER_SHADOW

    • Config Key: ping-number-shadow
    • Values
      • Type: Boolean
      • Default: false
  • PING_NUMBER_COLOR

    • Config Key: ping-number-color
    • Values
      • Type: String
      • Default: #FFFFFF55
  • LOW_PING_NUMBER_COLOR

    • Config Key: low-ping-number-color
    • Values
      • Type: String
      • Default: #FF55FF55
  • MEDIUM_PING_NUMBER_COLOR

    • Config Key: medium-ping-number-color
    • Values
      • Type: String
      • Default: #FFFFFF55
  • HIGH_PING_NUMBER_COLOR

    • Config Key: high-ping-number-color
    • Values
      • Type: String
      • Default: #FFFF5555
  • EXTREME_PING_NUMBER_COLOR

    • Config Key: extreme-ping-number-color
    • Values
      • Type: String
      • Default: #FFAA0000