> For the complete documentation index, see [llms.txt](https://docs.bacherik.de/mineplot/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.bacherik.de/mineplot/features/commands.md).

# Commands

## Introduction

All commands start with `/plot` if not configured else wise.

As alternative or short-command you can use the following aliases: `plots, p, plotsquared, p2, ps, 2, plotme`

## Command Overview

PlotSquared have an amount of commands for different uses. At here you find the complete command list with her syntax and permissions.

command-categories:

* [Basics](#basics)
* [Info](#info)
* [Teleport](#teleport)
* [Chat](#chat)
* [Claiming](#claiming)
* [Settings](#settings)
* [Schematic](#schematic)
* [Administration](#administration)
* [Other\_permissions](#other-permissions)

{% hint style="info" %}
If a command or permission contains the `Secondary` description, it means that a command supports several sub-commands or has several purposes. Furthermore, permissions with `.admin` contain administrative overrides.
{% endhint %}

{% hint style="info" %}
You can check out our [permission-packs](/mineplot/permissions/permission-packs.md) to avoid redundant permission assignments.
{% endhint %}

***

## Basics

### HELP

Get this help menu

**Usage:** `/plot help [category|#]`

**Aliases:** `[ ? ]`

**Permissions:** `plots.use` - Access to the command `/plot help`

**Source Code:** [here](https://github.com/BachErik-Team/MinePlot/blob/master/src/main/java/de/bacherik/commands/HelpCMD.java)

### CONFIRM

Confirm an action

**Usage:** `/plot confirm`

**Permissions:** `plots.confirm` - Access to the command `/plot confirm`

**Source Code:** [here](https://github.com/IntellectualSites/PlotSquared/blob/main/Core/src/main/java/com/plotsquared/core/command/Confirm.java)

***

## Info

### INFO

Display plot info

**Usage:**

*Primary:*

* `/plot info`

**Aliases:** `[ i ]`

**Permissions:**

*Primary:*

* `plots.info` - Access to the command `/plot info`

*Secondary:*

* `plots.admin.info.force` - Access to the command flag `-f`

**Source Code:** [here](https://github.com/BachErik-Team/MinePlot/blob/master/src/main/java/de/bacherik/commands/plot/PlotInfo.java)

### LIST

List plots

**Usage:**

*Primary:*

* `/plot list <forsale | mine | shared | world | top | all | unowned | unknown | player | world | done |fuzzy <search...>> [#]`

*Secondary:*

* `/plot list fuzzy <search...> [#]`

**Aliases:** `[ l, find, search ]`

**Permissions:**

*Primary:*

* `plots.list` - Access to the command `/plot list`

*Secondary:*

* `plots.list.world.<arg>`
* `plots.list.top` - Access to the command `/plot list top`
* `plots.list.mine` - Access to the command `/plot list mine`
* `plots.list.world` - Access to the command `/plot list world`
* `plots.list.done` - Access to the command `/plot list done`
* `plots.list.all` - Access to the command `/plot list all`
* `plots.list.shared` - Access to the command `/plot list shared`
* `plots.list.expired` - Access to the command `/plot list expired`
* `plots.list.unowned` - Access to the command `/plot list unowned`
* `plots.list.world.<world>"` - Access to the command `/plot list world <world>`
* `plots.list.player` - Access to the command `/plot list player <player>`
* `plots.list.forsale` - Access to the command `/plot list forsale`
* `plots.list.unknown` - Access to the command `/plot list unknown`
* `plots.list.area` - Access to the command `/plot list area`
* `plots.list.fuzzy` - Access to the command `/plot list fuzzy #`

**Source Code:** [here](https://github.com/IntellectualSites/PlotSquared/blob/main/Core/src/main/java/com/plotsquared/core/command/ListCmd.java)

### TARGET

Target a plot with your compass

**Usage:** `/plot target <<X;Z> | nearest>`

**Permissions:** `plots.target` - Access to the command `/plot target`

**Source Code:** [here](https://github.com/IntellectualSites/PlotSquared/blob/main/Core/src/main/java/com/plotsquared/core/command/Target.java)

### CAPS

Show plot mob and entity caps

**Usage:** `/plot caps [X;Z]`

**Permissions:**

*Primary:*

* `plots.caps` - Access to the command `/plot caps`

*Secondary:*

* `plots.admin.caps.other` - Administrative override to manage caps at other plots

**Source Code:** [here](https://github.com/IntellectualSites/PlotSquared/blob/main/Core/src/main/java/com/plotsquared/core/command/Caps.java)

***

## Teleport

### HOME

Teleport to someone/your plot(s).

**Usage:**

normal:

* `/plot home`
* `/plot home <#>`
* `/plot home <player> <#>`

alias:

* `/plot home <alias>`

coordinates:

* `/plot home <X>;<Z>`

**Aliases:** `[ h, visit, v, tp, teleport, goto, warp ]`

**Permissions:**

*Primary:*

* `plots.home` - Access to the command `/plot home`

*Secondary:*

* `plots.visit.owned` - Access to visit owned plots
* `plots.visit.other` - Access to visit other people's plots
* `plots.visit.unowned` - Access to visit unowned plots
* `plots.visit.owned` - Acecss to visit owned plots
* `plots.visit.shared` - Access to visit shared plots
* `plots.admin.visit.untrusted` - Access to visit plots where the player is not trusted to

**Source Code:** [here](https://github.com/BachErik-Team/MinePlot/blob/master/src/main/java/de/bacherik/commands/plot/PlotHome.java)

### MIDDLE

Teleports you to the center of the plot.

**Usage:** `/plot middle [X;Z]`

**Aliases:** `[ center, centre ]`

**Permissions:** `plots.middle` - Access to the command `/plot middle`

**Source Code:** [here](https://github.com/BachErik-Team/MinePlot/blob/master/src/main/java/de/bacherik/commands/plot/PlotMiddle.java)

***

## Chat

### COMMENT

Comment on a plot

**Usage:** `/plot comment [X;Z] <message-type: owner | public | report (= for staff)> <comment>`

**Aliases:** `[ msg ]`

**Permissions:** `plots.comment` - Access to the command `/plots comment`

**Source Code:** [here](https://github.com/IntellectualSites/PlotSquared/blob/main/Core/src/main/java/com/plotsquared/core/command/Comment.java)

### INBOX

List the comments for a plot / delete a message or clear the list

**Usage:**

*Primary:*

* `/plot inbox [X;Z]`

*Secondary:*

* `/plot inbox <message-type: owner | public | report> [X;Z] [delete <index> | clear | page]`

**Permissions:** `plots.inbox` - Access to the command `/plots inbox`

**Source Code:** [here](https://github.com/IntellectualSites/PlotSquared/blob/main/Core/src/main/java/com/plotsquared/core/command/Inbox.java)

***

## Claiming

### CLAIM

Claim the current plot you are standing on, if you're not activated the economy feature in the `worlds.yml` for this world. If you activated the "specify\_on\_claim" option in the worlds.yml you can define a plot-schematic.

**Usage:**

*Primary:*

* `/plot claim [X;Z]`

**Aliases:** `[ c ]`

**Permissions:**

*Primary:*

* `plots.claim` - Access to `/plot claim`
* `plots.plot.<max plot amount>` - Limit the amounts of plots a player can claim

**Source Code:** [here](https://github.com/IntellectualSites/PlotSquared/blob/main/Core/src/main/java/com/plotsquared/core/command/Claim.java)

### AUTO

Claim the nearest plot in your world if you're not activated the economy feature in the `worlds.yml` for this world.

**Usage:** `/plot auto`

**Aliases:** `[ a ]`

**Permissions:**

*Primary:*

* `plots.auto` - Access to the command `/plot auto`
* `plots.plot.<max plot amount>` - Limit the amounts of plots a player can claim

*Secondary:*

* `plots.claim.<schem>` - Dynamic permission associated with your schematic, if used.
* `plots.auto.mega` - Access to the length and width arguments
* `plots.admin.command.schematic` - Administrative access to schematic claims.

**Source Code:** [here](https://github.com/IntellectualSites/PlotSquared/blob/main/Core/src/main/java/com/plotsquared/core/command/Auto.java)

***

## Settings

### SETOWNER

Set the plot owner.

**Usage:** `/plot setowner <player> [X;Z]`

**Aliases:** `[ owner, so, seto ]`

**Permissions:**

*Primary:*

* `plots.admin.command.setowner`

**Source Code:** [here](https://github.com/IntellectualSites/PlotSquared/blob/main/Core/src/main/java/com/plotsquared/core/command/Owner.java)

### ADD

With this command you "add him" to the whitelist of the plot. Allow a user to build in a plot while the plot owner is online.

**Usage:** `/plot add <player | *> [X;Z]`

**Permissions:**

*Primary:*

* `plots.add` - Access to the command `/plot add`
* `plots.add.<amount>` - Specifying the amount of people the plot owner can add

*Secondary:*

* `plots.admin.command.add` - Administrative override
* `plots.add.everyone` - Access to add everyone

**Source Code:** [here](https://github.com/IntellectualSites/PlotSquared/blob/main/Core/src/main/java/com/plotsquared/core/command/Add.java)

### TRUST

With this command you "add him" to the whitelist of the plot. It gives the added user more permissions as the normal ADD command: it allows a user to build in a plot every time and use WorldEdit while the plot owner is offline.

**Usage:** `/plot trust <player | *> [X;Z]`

**Aliases:** `[ t ]`

**Permissions:**

*Primary:*

* `plots.trust` - Access to the command `/plot trust`
* `plots.trust.<amount>` - Specifying the amount of people the plot owner can trust

*Secondary:*

* `plots.admin.command.trust` - Administrative override
* `plots.trust.everyone` - Access to trust everyone

**Source Code:** [here](https://github.com/IntellectualSites/PlotSquared/blob/main/Core/src/main/java/com/plotsquared/core/command/Trust.java)

### REMOVE

Remove a player from a plot. This includes the player whitelist (ADD, TRUST) and the blacklist (DENY) of the plot.

**Usage:** `/plot remove <player | *> [X;Z]`

**Aliases:** `[ r, untrust, ut, undeny, ud, unban ]`

**Permissions:**

*Primary:*

* `plots.remove` - Access to the command `/plot remove`

*Secondary:*

* `plots.admin.command.remove` Administrative override

**Source Code:** [here](https://github.com/IntellectualSites/PlotSquared/blob/main/Core/src/main/java/com/plotsquared/core/command/Remove.java)

### DENY

Deny a user from entering a plot. With this command you "add him" to the blacklist of the plot.

**Usage:** `/plot deny <player | *> [X;Z]`

**Aliases:** `[ d, ban ]`

**Permissions:**

*Primary:*

* `plots.deny` - Access to the command `/plot deny`
* `plots.deny.<amount>` - Specifying the amount of people the plot owner can deny

*Secondary:*

* `plots.admin.command.deny` - Administrative override
* `plots.admin.entry.denied` - Administrative override to bypass plot deny
* `plots.deny.everyone` - Access to deny everyone

**Source Code:** [here](https://github.com/IntellectualSites/PlotSquared/blob/main/Core/src/main/java/com/plotsquared/core/command/Deny.java)

### KICK

Kick a player from your plot.

**Usage:** `/plot kick <player | *> [X;Z]`

**Aliases:** `[ k ]`

**Permissions:**

*Primary:*

* `plots.kick` - Access to the command `/plot kick`

*Secondary:*

* `plots.admin.command.kick` - Administrative override

**Source Code:** [here](https://github.com/IntellectualSites/PlotSquared/blob/main/Core/src/main/java/com/plotsquared/core/command/Kick.java)

### MERGE

Merge the plot you are standing on with another plot.

**Usage:** `/plot merge <all | n | e | s | w> [X;Z] [removeroads]`

**Aliases:** `[ m ]`

**Permissions:**

*Primary:*

* `plots.merge` - Access to the command `/plot claim`

*Secondary:*

* `plots.merge.<amount>` - Limit the amount of plots a player can merge to a mega plot
* `plots.admin.command.merge` - Administrative override
* `plots.merge.other` - Access to merge the plot with other people
* `plots.merge.keeproad` - Access to use the keeproad argument

**Source Code:** [here](https://github.com/IntellectualSites/PlotSquared/blob/main/Core/src/main/java/com/plotsquared/core/command/Merge.java)

### UNLINK

Unlink a mega-plot (merged plot)

**Usage:** `/plot unlink [X;Z] [createroads]`

**Aliases:** `[ u, unmerge ]`

**Permissions:**

*Primary:*

* `plots.unlink` - Access to the command `/plot unlink`

*Secondary:*

* `plots.admin.command.unlink` - Administrative override

**Source Code:** [here](https://github.com/IntellectualSites/PlotSquared/blob/main/Core/src/main/java/com/plotsquared/core/command/Unlink.java)

### SETHOME

Set the plot-home you're standing on. The plothome is the position where the player will teleport if he uses the `/plot home` or `/plot visit` command. With the argument `none` you reset the position.

**Usage:** `/plot set home [X;Z]`

**Aliases:** `[ sh, seth, sethome ]`

**Permissions:**

* `plots.set.home` - Access to the command `/plot set home`

**Source Code:** [here](https://github.com/BachErik-Team/MinePlot/blob/master/src/main/java/de/bacherik/commands/plot/set/PlotHome.java)

### ALIAS

Set the plot name

**Usage:**

* `/plot alias set <alias> [X;Z]`
* `/plot alias remove <alias> [X;Z]`

**Aliases:** `[ setalias, sa, name, rename, setname, seta, nameplot ]`

**Permissions:**

*Primary:*

* `plots.alias.set` - Access to the command `/plot alias set`
* `plots.alias.remove` - Access to the command `/plot alias remove`

*Secondary:*

* `plots.admin.alias.set` - Administrative override to set an alias
* `plots.admin.alias.remove` - Administrative override to remove an alias

**Source Code `set`:** [here](https://github.com/BachErik-Team/MinePlot/blob/master/src/main/java/de/bacherik/commands/plot/set/PlotAlias.java) **Source Code `remove`:** [here](https://github.com/BachErik-Team/MinePlot/blob/master/src/main/java/de/bacherik/commands/plot/unset/PlotAlias.java)

### SETDESCRIPTION

Set the plot description

**Usage:** `/plot desc <description>` or `/plot set description`

**Aliases:** `[ setdescription, setdesc, setd, description ]`

**Permissions:** `plots.set.desc` - Access to the command `/plot set description`

**Source Code:** [here](https://github.com/BachErik-Team/MinePlot/blob/master/src/main/java/de/bacherik/commands/plot/set/PlotDescription.java)

### SETBIOME

List all possible biomes or change the plot biome. If you clear or delete the plot, you reset the biom setting too, so the default biome (changeable in the `worlds.yml`) will be used.

**Usage:** `/plot biome [X;Z] [biome]`

**Aliases:** `[ biome, sb, setb, b ]`

**Permissions:** `plots.set.biome` - Access to the command `/plot set biome`

**Source Code:** [here](https://github.com/IntellectualSites/PlotSquared/blob/main/Core/src/main/java/com/plotsquared/core/command/Biome.java)

### SETFLAG

Manage plot flags.

**Usage:**

*Primary:*

* `/plot flag [X;Z]`

*Secondary:*

* `/plot flag [X;Z] info <flag>`
* `/plot flag [X;Z] set <flag> <value>`
* `/plot flag [X;Z] add <flag> <values>`
* `/plot flag [X;Z] remove <flag> [values]`

**Aliases:** `[ f, flag ]`

**Permissions:**

*Primary:*

* `plots.flag` - Access to the command `/plot flag`

*Secondary:*

* `plots.set.flag` - Access to the command `/plot set flag`
* `plots.flag.remove` - Access to the command `/plot flag remove`
* `plots.flag.add` - Access to the command `/plot flag add`
* `plots.set.flag.other` - Access to set flag on other people's plots
* `plots.set.flag.<arg>` - Access to the command `/plot set flag <arg>`
* `plots.flag.list` - Access to the command `/plot flag list`

**Source Code:** [here](https://github.com/IntellectualSites/PlotSquared/blob/main/Core/src/main/java/com/plotsquared/core/command/FlagCommand.java)

### TOGGLE

Toggle per user settings

**Usage:** `/plot toggle [X;Z] <chat | chatspy | clear-confirmation | time | titles | worldedit>`

**Permissions:**

*Primary:*

* `plots.use` - Access to the command `/plot toggle`

*Secondary:*

* `plots.admin.command.chat` - Access to the command `/plot toggle chat-spy`
* `plots.worldedit.bypass` - Access to the command `/plot wea`
* `plots.toggle.chat` - Access to the command `/plot chat`
* `plots.admin.command.autoclear` - Access to the command `/plot toggle clear-confirmation`
* `plots.toggle.titles` - Access to the command `/plot toggle titles`
* `plots.toggle.time` - Access to the command `/plots toggle time`
* `plots.toggle.debug` - Access to the command `/plots toggle debug`
* `plots.admin.debug.other` - Administrative override to toggle the debugmode for other players

**Source Code:** [here](https://github.com/IntellectualSites/PlotSquared/blob/main/Core/src/main/java/com/plotsquared/core/command/Toggle.java)

### SET

Set a plot value

**Usage:** `/plot set <biome | alias | home | floor | wall | all | air | main | middle | outline | border> [X;Z] <value...>`

**Aliases:** `[ s ]`

**Permissions:**

*Primary:*

* `plots.set` - Access to the command `/plot set`

*Secondary:*

* `plots.set." + <component>`

**Source Code:** [here](https://github.com/IntellectualSites/PlotSquared/blob/main/Core/src/main/java/com/plotsquared/core/command/Set.java)

### COPY

Copy a plot.

**Usage:** `/plot copy [X;Z] <X;Z>`

**Aliases:** `[ copypaste ]`

**Permissions:**

*Primary:*

* `plots.copy` - Access to the command `/plot copy`

**Source Code:** [here](https://github.com/IntellectualSites/PlotSquared/blob/main/Core/src/main/java/com/plotsquared/core/command/Copy.java)

### MOVE

Move a plot.

**Usage:** `/plot move [X;Z] <X;Z>`

**Permissions:**

*Primary:*

* `plots.move` - Access to the command `/plot move`

**Source Code:** [here](https://github.com/IntellectualSites/PlotSquared/blob/main/Core/src/main/java/com/plotsquared/core/command/Move.java)

### SWAP

Swap two plots.

**Usage:** `/plot swap [X;Z] <X;Z>`

**Aliases:** `[ switch ]`

**Permissions:**

*Primary:*

* `plots.swap` - Access to the command `/plot swap`

**Source Code:** [here](https://github.com/IntellectualSites/PlotSquared/blob/main/Core/src/main/java/com/plotsquared/core/command/Swap.java)

### BACKUP

Manage plot backups

**Usage:** `/plot backup <save | list | load> [X;Z]`

**Permissions:**

*Primary:*

* `plots.backup` - Access to the command `/plot backup`

*Secondary:*

* `plots.backup.save` - Access to the command `/plot backup save`
* `plots.backup.load` - Access to the command `/plot backup load`
* `plots.backup.list` - Access to the command `/plot backup list`
* `plots.admin.backup.other` - Administrative override to manage backups at other plots

**Source Code:** [here](https://github.com/IntellectualSites/PlotSquared/blob/main/Core/src/main/java/com/plotsquared/core/command/Backup.java)

### CLEAR

Clear the plot you stand on. It doesn't reset any plot settings or flag (with exception of the biome setting).

**Usage:** `/plot clear [X;Z]`

**Aliases:** `[ reset ]`

**Permissions:**

*Primary:*

* `plots.clear` - Access to the command `/plot clear`

*Secondary:*

* `plots.admin.command.clear` - Administrative override

**Source Code:** [here](https://github.com/IntellectualSites/PlotSquared/blob/main/Core/src/main/java/com/plotsquared/core/command/Clear.java)

### DELETE

Delete the plot you stand on.

**Usage:** `/plot delete [X;Z]`

**Aliases:** `[ dispose, del ]`

**Permissions:**

*Primary:*

* `plots.delete` - Access to the command `/plot delete`

*Secondary:*

* `plots.admin.command.delete` - Administrative override to delete plots.

**Source Code:** [here](https://github.com/IntellectualSites/PlotSquared/blob/main/Core/src/main/java/com/plotsquared/core/command/Delete.java)

***

## Administration

### CREATEROADSCHEMATIC

Add a road schematic to your world using the roads around your current plot

**Usage:** `/plot createroadschematic`

**Aliases:** `[ crs ]`

**Permissions:**

* `plots.createroadschematic` - Access to the command `/plot createroadschematic`

**Source Code:** [here](https://github.com/IntellectualSites/PlotSquared/blob/main/Core/src/main/java/com/plotsquared/core/command/CreateRoadSchematic.java)

### REGENALLROADS

Regenerate all roads in the map using the set road schematic

**Usage:** `/plot regenallroads [height]`

**Aliases:** `[ rgar ]`

**Permissions:**

* `plots.regenallroads` - Access to the command `/plot regenallroads`

**Source Code:** [here](https://github.com/IntellectualSites/PlotSquared/blob/main/Core/src/main/java/com/plotsquared/core/command/RegenAllRoads.java)

### PURGE

Purge all plots for a world

**Usage:** `/plot purge [id:<id>] [owner:<owner>] [shared:<shared>] [unknown:<true|false>] [clear:<true|false>]`

**Permissions:**

* `plots.admin` - Access to the command `/plot purge`

**Source Code:** [here](https://github.com/IntellectualSites/PlotSquared/blob/main/Core/src/main/java/com/plotsquared/core/command/Purge.java)

### TRIM

Delete unmodified portions of your plotworld

**Usage:** `/plot trim [regenerate]`

**Permissions:** `plots.admin` - Access to the command `/plot trim`

**Source Code:** [here](https://github.com/IntellectualSites/PlotSquared/blob/main/Core/src/main/java/com/plotsquared/core/command/Trim.java)

### CLUSTER

Manage a plot cluster

**Usage:**

*Primary:*

* `/plot cluster`

*Secondary:*

* `/plot cluster resize <pos1> <pos2>`
* `/plot cluster leave [name]`
* `/plot cluster info [name]`
* `/plot cluster create <name> <id-bot> <id-top>`
* `/plot cluster delete [name]`
* `/plot cluster list`
* `/plot cluster invite <player>`
* `/plot cluster sethome`
* `/plot cluster helpers <add|remove> <player>`
* `/plot cluster tp <name>`
* `/plot cluster kick <player>`

**Aliases:** `[ clusters ]`

**Permissions:**

*Primary:*

* `plots.cluster` - Access to the command `/plot cluster`

*Secondary:*

* `plots.cluster.delete.other` - Administrative override to delete other clusters
* `plots.cluster.kick` - Access to the command `/plot cluster kick`
* `plots.cluster.leave` - Access to the command `/plot cluster leave`
* `plots.cluster.helpers` - Access to the command `/plot cluster helpers`
* `plots.cluster.create` - Access to the command `/plot cluster create`
* `plots.cluster.resize` - Access to the command `/plot cluster resize`
* `plots.cluster.invite.other` - Access to the command `/plot cluster invite`
* `plots.cluster.invite` - Access to the command `/plot cluster invite`
* `plots.cluster.tp` - Access to the command `/plot cluster tp`
* `plots.cluster.<#>` - Limit the amount of clusters a player can have
* `plots.cluster.resize.expand` - Access to the command `/plot cluster expand`
* `plots.cluster.info` - Access to the command `/plot cluster info`
* `plots.cluster.sethome.other` - Administrative override to sethome for other clusters
* `plots.cluster.resize.other` - Administrative override to resize other clusters
* `plots.cluster.tp.other` - Administrative override to teleport to other clusters
* `plots.cluster.kick.other` - Administrative override to kick players from other clusters
* `plots.cluster.create.other` - Administrative override to create other clusters
* `plots.cluster.list` - Access to the command `/plot cluster list`
* `plots.cluster.delete` - Access to the command `/plot cluster delete`
* `plots.cluster.resize.shrink` - Access to the command `/plot cluster resize shrink`
* `plots.cluster.sethome` - Access to the command `/plot cluster sethome`

**Source Code:** [here](https://github.com/IntellectualSites/PlotSquared/blob/main/Core/src/main/java/com/plotsquared/core/command/Cluster.java)

***

## Other permissions

* `plots.admin.area.sudo` - ???
* `plots.projectile.unowned` - Shoot projectiles on unowned plots
* `plots.projectile.other` - Shoot projectiles at other people's plots
* `plots.admin.interact.blockedcommands` - Access to blocked commands of the `blocked-cmds` flag
* `plots.admin.update.notify` - Receive update notifications from SpigotMC.
* `plots.admin.exit.denied` - Administrative override to leave plots with the `deny-exit` flag.
* `plots.admin.entry.forcefield` - Administrative override to bypass the `forcefield` flag
* `plots.admin.destroy.unowned` - Administrative override to destroy blocks at unowned plots
* `plots.admin.build.unowned` - Administrative override to build blocks at unowned plots
* `plots.admin.destroy.groundlevel` - Administrative override to break the ground level
* `plots.admin.destroy.other` - Administrative override to destroy blocks at other plots
* `plots.admin.destroy.road` - Administrative override to destroy blocks at the road
* `plots.admin.build.road` - Administrative override to place blocks at the road
* `plots.admin.interact.unowned` - Administrative override to interact at unowned plots
* `plots.admin.interact.other` - Administrative override to interact with other plots
* `plots.admin.build.heightlimit` - Administrative override to bypass a custom height limit


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.bacherik.de/mineplot/features/commands.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
