feature-19-holograms #12

Merged
cuqmbr merged 3 commits from feature-19 into develop 2025-07-15 03:15:38 +00:00
11 changed files with 65 additions and 1 deletions

View File

@ -29,3 +29,6 @@ src/plugins/CustomizablePlayerModels
src/plugins/CarbonChat/users
src/plugins/CarbonChat/libraries
src/plugins/FancyHolograms/holograms.yml
src/plugins/FancyHolograms/logs

3
.gitignore vendored
View File

@ -29,3 +29,6 @@ src/plugins/CustomizablePlayerModels
src/plugins/CarbonChat/users
src/plugins/CarbonChat/libraries
src/plugins/FancyHolograms/holograms.yml
src/plugins/FancyHolograms/logs

View File

@ -44,6 +44,15 @@ RUN mkdir -p ${DATA_PATH}/CustomizablePlayerModels && \
${CONFIG_PATH}/plugins/CustomizablePlayerModels
# Add symlinks to FancyHolograms files
RUN mkdir -p ${DATA_PATH}/FancyHolograms/logs && \
ln -sf ${DATA_PATH}/FancyHolograms/logs/ \
${CONFIG_PATH}/plugins/FancyHolograms/logs && \
touch ${DATA_PATH}/FancyHolograms/holograms.yml && \
ln -sf ${DATA_PATH}/FancyHolograms/holograms.yml \
${CONFIG_PATH}/plugins/FancyHolograms/holograms.yml
VOLUME ${DATA_PATH}

View File

@ -0,0 +1,6 @@
{
"sender_id": "107d418c-d2b4-4842-9cd6-b997833605c6:edff4fdc-baa2-4841-85db-9563dfc93cbf:9e4c399e-f40a-45f4-866b-8ff52cbd21d0",
"send_metrics": false,
"send_errors": false,
"disable_logging": true
}

BIN
src/plugins/FancyHolograms-2.6.0.jar (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,13 @@
config_version: 1 # Config version, do not modify.
saving:
autosave:
enabled: false # Whether autosave is enabled.
interval: 15 # The interval at which autosave is performed in minutes.
save_on_changed: true # Whether the plugin should save holograms when they are changed.
logging:
log_level: INFO # The log level for the plugin (DEBUG, INFO, WARN, ERROR).
log_on_world_load: true # Whether hologram loading should be logged on world loading. Disable this if you load worlds dynamically to prevent console spam.
version_notifications: true # Whether the plugin should send notifications for new updates.
visibility_distance: 32 # The default visibility distance for holograms.
register_commands: true # Whether the plugin should register its commands.
update_visibility_interval: 20 # The interval at which hologram visibility is updated in ticks.

View File

@ -0,0 +1 @@
config_version: 0

View File

@ -0,0 +1,2 @@
feature-flags:
disable-holograms-for-bedrock-players: false # Do not show holograms to bedrock players

BIN
src/plugins/PlaceholderAPI-Expansion-1.2.0.jar (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -10,9 +10,27 @@
# Download placeholders: /papi ecloud
check_updates: true
cloud_enabled: true
cloud_sorting: "name"
cloud_sorting: name
boolean:
'true': 'yes'
'false': 'no'
date_format: MM/dd/yy HH:mm:ss
debug: false
expansions:
player:
ping_value:
high: 100
medium: 50
direction:
north: N
south: S
north_west: NW
north_east: NE
east: E
south_east: SE
west: W
south_west: SW
ping_color:
medium: '&e'
high: '&c'
low: '&a'

BIN
src/plugins/PlaceholderAPI/expansions/Expansion-player.jar (Stored with Git LFS) Normal file

Binary file not shown.