πWaypoints & Holograms
This guide explains how to configure waypoints and holograms used by quests. These elements can be defined globally and referenced by name, or configured directly inside a quest.
You must use zEssentials
Global configuration
Both features have a dedicated file in the plugin's data folder:
holograms.ymlwaypoints.yml
holograms.yml
holograms.ymlholograms:
- name: EXAMPLE_1
location: "world,320.8,10,-9.5"
text: "%img_pnj_talk%"
scale: 2
billboard: VERTICAL
see-through: trueFields
name(required) β Identifier used by quests to reference this hologram.locationorlocations(required) β One location string or a list of locations. Each location uses the formatworld,x,y,zand may includeyaw,pitch.textortextsβ Lines shown in the hologram. Default:"Hummm, you need to add a text !".billboardβ Orientation of the text. Default:CENTER. Other options:FIXED,HORIZONTAL,VERTICAL.scaleβ Size of the hologram. Accepts a single value (2) or commaβseparated values ("1,2,1"). Default:1for all axes.translation-x,translation-y,translation-zβ Offset from the base location. Default:0for each axis.brightness-block,brightness-skyβ Light levels used to illuminate the hologram. Default:15for both.shadow-radiusβ Size of the text shadow. Default:0.shadow-strengthβ Darkness of the text shadow. Default:1.0.visibility-distanceβ Maximum distance at which the hologram is visible. Default:-1(use engine default).text-backgroundβ Background color. Use a hex code (#ff00ff), a color name (red),transparent, ordefaultto remove the background.text-alignmentβ Alignment of each line. Default:CENTER. Other options:LEFT,RIGHT.text-shadowβ Whether the text has a shadow. Default:false.see-throughβ Iftrue, the hologram can be seen through blocks. Default:false.
waypoints.yml
waypoints.ymlFields
name(required) β Identifier used by quests to reference this waypoint.location(required) β Target location in the formatworld,x,y,z(yaw and pitch are optional).textureβ Icon displayed by the waypoint provider. Default: none.colorβ Color of the beacon beam. Accepts common color names or hex codes. Default:white.
Using in quests
Reference a global definition by name:
Or define them inline within a quest:
Notes
These features require a compatible plugin such as zEssentials to display holograms and waypoints.
Automatic updates depend on
update-hologramandupdate-waypointsettings inconfig.yml.
Last updated