Apollo
Developers
Mods
Markers

Markers

Allows you and your team to mark things in the world, like in various FPS games.

Integration

How to toggle the mod

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

Available options

  • ENABLED

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

    • Config Key: ding-volume-self
    • Values
      • Type: Float
      • Default: 0.5F
      • Minimum: 0.0F
      • Maximum: 1.0F
  • DING_VOLUME_OTHERS

    • Config Key: ding-volume-others
    • Values
      • Type: Float
      • Default: 0.5F
      • Minimum: 0.0F
      • Maximum: 1.0F
  • MIDDLE_CLICK_REMOVE

    • Hit the middle mouse button while hovering over your marker to delete it.
    • Config Key: middle-click-remove
    • Values
      • Type: Boolean
      • Default: true
  • CHAT_NOTIFY

    • Config Key: chat-notify
    • Values
      • Type: Boolean
      • Default: false
  • LUNAR_NOTIFY

    • Config Key: lunar-notify
    • Values
      • Type: Boolean
      • Default: false
  • TEAM_MEMBERS

    • Try to detect your current team, and see and broadcast markers from and to members of your team.
    • Config Key: team-members
    • Values
      • Type: Boolean
      • Default: true
  • SCOREBOARD_TEAMS

    • Classic team detection which uses Minecraft's scoreboard teams.
    • Config Key: scoreboard-teams
    • Values
      • Type: Boolean
      • Default: false
  • APOLLO_TEAMS

    • On supported servers, use our Apollo plugin for team detection.
    • Config Key: apollo-teams
    • Values
      • Type: Boolean
      • Default: true
  • COLOR_TEAMS

    • Config Key: color-teams
    • Values
      • Type: Boolean
      • Default: false
  • HYPIXEL_PARTY

    • See and broadcast markers from and to members of your Hypixel party.
    • Config Key: hypixel-party
    • Values
      • Type: Boolean
      • Default: true
  • LUNAR_FRIENDS

    • See and broadcast markers from and to people on your Lunar friends list.
    • Config Key: lunar-friends
    • Values
      • Type: Boolean
      • Default: false
  • SCALE

    • Config Key: scale
    • Values
      • Type: Float
      • Default: 1.0F
      • Minimum: 0.5F
      • Maximum: 2.0F
  • VISIBLE_DURATION

    • Config Key: visible-duration
    • Values
      • Type: Integer
      • Default: 20
      • Minimum: 5
      • Maximum: 120
  • ANIMATE_MARKER

    • Config Key: animate-marker
    • Values
      • Type: Boolean
      • Default: true
  • COMPACT_MODE

    • Config Key: compact-mode
    • Values
      • Type: Boolean
      • Default: false
  • TEXT_SHADOW

    • Adds a shadow to text
    • Config Key: text-shadow
    • Values
      • Type: Boolean
      • Default: true
  • BACKGROUND

    • Config Key: background
    • Values
      • Type: Boolean
      • Default: false
  • BACKGROUND_COLOR

    • Config Key: background-color
    • Values
      • Type: String
      • Default: #40000000
  • MARKER_COLOR

    • Config Key: marker-color
    • Values
      • Type: String
      • Default: #BEAEE1FC
  • DANGER_MARKER_COLOR

    • Config Key: danger-marker-color
    • Values
      • Type: String
      • Default: #BEFF4200
  • INFO_MARKER_COLOR

    • Config Key: info-marker-color
    • Values
      • Type: String
      • Default: #FF349EEB
  • INTEREST_MARKER_COLOR

    • Config Key: interest-marker-color
    • Values
      • Type: String
      • Default: #FFFFAA00