Compatibility
Minecraft: Java Edition
1.21.x
1.20.x
Platforms
Creators
Details
Licensed ARR
Published 2 months ago
Updated 2 months ago
Compatibility: Geyser, Floodgate, ViaVersion, Spigot, Paper, Bukkit
This plugin provides java player functionality for bedrock
1. /chunk
- Displays chunk borders using Armor stands.
- Armor stands appear 4 blocks high around the player.
- Toggle: run the command again to enable/disable.

2. /cords
- Shows current coordinates (X, Y, Z) and facing direction in a boss bar.
- Directions include: North, South, East, West, and intermediate directions.
- Toggle: run the command again to enable/disable.

3. /block
- Displays block ID and block state of the block the player is looking at.
- Updates in real-time as the player looks at different blocks.
- Information is shown in the boss bar.
- Toggle: run the command again to enable/disable.

4. /info
- Shows the server software name (Spigot, Paper, Folia).
- Displays the server version.
- Can be run from the console or in-game.
5. /m or /menu
- Opens a GUI menu for quick access to all features.
- Fully customizable via
config.yml. - You can add your own commands to the menu.

# ============================================
# Bedrock Features Plugin Configuration
# Version: 1.3.0
# Author: tino964
# ============================================
features:
# --- Chunk Border Display (ArmorStand Version) ---
chunk-borders:
update-interval: 2 # Update interval in ticks
border-height: 4 # Height of the line in blocks
step: 2 # Distance between ArmorStands
line-symbol: "&9▌" # Symbol/text for the line (e.g., ▌, █, ◆)
# --- Boss Bar ---
boss-bar:
color: BLUE # PINK, BLUE, RED, GREEN, YELLOW, PURPLE, WHITE
style: SOLID # SOLID, SEGMENTED_6, SEGMENTED_10, SEGMENTED_12, SEGMENTED_20
menu:
title: "&9&lBedrock Features Menu"
size: 27 # Must be a multiple of 9
items:
chunk:
enabled: true
slot: 10
material: SOUL_LANTERN
name: "&b&lChunk Borders"
lore:
- "&7Toggle chunk border visualization"
- "&7with ArmorStand lines"
- ""
- "&eClick to toggle!"
command: "chunk"
cords:
enabled: true
slot: 11
material: COMPASS
name: "&a&lCoordinates Display"
lore:
- "&7Show your current coordinates"
- "&7and facing direction"
- ""
- "&eClick to toggle!"
command: "cords"
block:
enabled: true
slot: 12
material: GRASS_BLOCK
name: "&6&lBlock Information"
lore:
- "&7Display information about"
- "&7the block you're looking at"
- ""
- "&eClick to toggle!"
command: "block"
info:
enabled: true
slot: 13
material: KNOWLEDGE_BOOK
name: "&d&lServer Information"
lore:
- "&7View server software"
- "&7and version details"
- ""
- "&eClick to view!"
command: "info"
close:
enabled: true
slot: 22
material: BARRIER
name: "&c&lClose Menu"
lore:
- "&7Close this menu"
command: "close"
messages:
prefix: "&8[&9Bedrock Features&8]&r "
# Chunk feature
chunk-enabled: "&aChunk borders enabled!"
chunk-disabled: "&cChunk borders disabled!"
# Coordinates feature
cords-enabled: "&aCoordinates display enabled!"
cords-disabled: "&cCoordinates display disabled!"
# Block info feature
block-enabled: "&aBlock information display enabled!"
block-disabled: "&cBlock information display disabled!"
# General messages
no-permission: "&cYou don't have permission to use this command!"
console-only-partial: "&cThis command can only be used in-game!"
reload-success: "&aConfiguration reloaded successfully!"



