FAQ

Frequently Asked Questions (FAQ)

🔹 Why does typing /ps no longer show the help list?

This happens if you have the main menu enabled and the option to cancel the original command in your menu:

inventories:
  main-menu:
    enabled: true
    cancel-original-command: true

When these options are enabled, the plugin cancels ProtectionStones' default behavior (which would normally run /ps help) and instead opens the graphical menu directly.

➡️ How can I show both the menu and the help message?

Just change cancel-original-command to false:

inventories:
  main-menu:
    enabled: true
    cancel-original-command: false

This way, the menu will open without canceling the original command. Players will see the menu and the /ps help message.

➡️ Can I disable the menu completely?

Yes, just set enabled to false:

inventories:
  main-menu:
    enabled: false

This will make the /ps command behave normally again, without showing any GUI.

➡️ Does this affect other subcommands like /ps give or /ps info?

Nope! This only applies when a player runs /ps without any arguments. All other subcommands will continue to work as usual.

🔹Why do I get a teleport error when kicking a player?

This happens if you haven't set the spawn location yet. When a player is kicked (for example, from a region), the plugin tries to teleport them to the configured spawn location. If the spawn location does not exist or has no valid world, you'll see an error message like:

No location found, contact an administrator.

➡️ How do I set the spawn location? Just run the following command as a player to set your current position as the spawn point:

/psadmin setloc spawn

This will save your current location. The plugin will use it for teleporting kicked players.

➡️ Can I change the spawn later?

Yes! You can re-run the same command anytime to update the spawn location.

➡️ What happens if I don't set a spawn?

Players will not be teleported if the spawn is missing, and an error message will be shown instead.

Last updated