Skip to content

Placeholders

LandClaimPlugin supports both internal placeholders (used in messages and menus) and PlaceholderAPI (for external integrations).

1. Internal Placeholders

These placeholders are used within messages.yml and GUI configuration files.

Context Specific

Internal placeholders are not global. They only work in specific messages where that data is available. For example, <time> only works in PvP-related messages.

Common Variables

PlaceholderDescriptionContext
<owner>Name of the claim ownerMost claim-related messages
<player>Name of the target playerInvites, admin commands
<name>Name of the claim or warpWarp/Rename messages
<count>Number of chunks/itemsBulk actions
<limit>Max limitLimit reached messages

Message-Specific Variables

PlaceholderDescriptionFound In
<world>, <x>, <z>Location coordinatesWand, Claim List
<id>Internal Claim IDAdmin Claim Info
<uuid>Player's Unique IDAdmin Claim Info
<time>, <seconds>Remaining time/cooldownPvP, Unstuck
<gap>Required distanceGap protection messages
<players>List of trusted playersClaim Info

2. PlaceholderAPI (Global)

Unlike internal placeholders, these can be used anywhere on your server (Tab, Scoreboard, etc.) via PlaceholderAPI.

Identifier: landclaim

Claim Data (Current Location)

These return data based on where the player is currently standing.

PlaceholderDescription
%landclaim_owner%Name of the claim owner
%landclaim_owner_uuid%UUID of the claim owner
%landclaim_name%The custom name of the claim
%landclaim_role%Your role (Owner, Member, Visitor)
%landclaim_members%Number of members in the claim
%landclaim_size%Total chunks in the current claim
%landclaim_pvp%PvP status (Enabled/Disabled)
%landclaim_is_claimed%Check if chunk is claimed (Yes/No)
%landclaim_world%Current world name
%landclaim_x%, %landclaim_z%Your current coordinates

Player Status

These return data about the player's own profile and limits.

PlaceholderDescription
%landclaim_profile%Name of your active profile
%landclaim_chunks%Chunks used in your active profile
%landclaim_limit%Your total chunk claim limit

Utility

PlaceholderDescription
%landclaim_message:<key>%Fetches any raw string from messages.yml

Placeholder Format Compatibility

All internal placeholders support both bracket styles interchangeably in configuration files:

  • <owner> is the same as {owner}
  • <limit> is the same as {limit}

Released under the MIT License.