Customize Waypoints

How to change the Item for Waypoint Menu?

Inside waypoints.yml there is Open Menu Item option, you can change it to any item you want.

How to make Waypoints always shown without having players to hold a Compass?

Change the Show Tracker Condition to ALWAYS , see Conditions and Criteriasfor more information.

How to make custom server waypoints?

Go to /plugins/FancyWaystones/server_waypoints/ under that directory, you will find a server folder, that folder will be used as Waypoint Category. Now open the folder, and create a .yml file (Or you can copy center_world.yml as a template). This is what center_world.yml looks like:

Name: "Center of the World"
World Name: "world"
X: 0
Y: 0
Z: 0
# Available colors:
# WHITE, RED, GREEN, BLUE, BLACK, AQUA, PURPLE, MAGENTA, YELLOW, ORANGE, GRAY
Color: WHITE
Always Visible: false
# Visible at start
Visible: false
Listing Condition:
  Criteria: HAS_PERMISSION
  Permission: 'fancywaystones.vip'

Name is the waypoint name World Name is the world name of the waypoint location X is the x coordinate of the waypoint location Y is the y coordinate of the waypoint location Z is the z coordinate of the waypoint location Color is the default color of the waypoint (players still can change it later for themselves) Always Visible if you set this to true, this waypoint will always be visible even if the Visible option is set to false Visible is the default visibility flag for the waypoint (players still can change it later for themselves) Listing Condition is the condition whether this server waypoint should be visible to a player or not

Last updated