Logo
MINECRAFTBIBLE
Items
Items

All game items

Blocks
Blocks

Building blocks

Mobs
Mobs

Creatures & monsters

Biomes
Biomes

World biomes

Structures
Structures

Generated structures

Recipes
Recipes

Crafting guides

Advancements
Advancements

Achievements

Loot Tables
Loot Tables

Drop rates

Tags
Tags

Item groupings

All Versions
View all data →
Capes
Cape ArchiveNEW

Browse rare Minecon capes, OptiFine capes, and custom capes from players worldwide

Browse

Player Database
Player DatabasePopular

Search any player

Skin Browser
Skin Browser

Browse & download skins

Cape Gallery
Cape GalleryNEW

Minecon & OptiFine capes

Seed Vault
Seed Vault

Curated seeds

Learn

Guides
GuidesNew

Tutorials & tips

Blog
Blog

News & updates

Community

Community Hub
Community HubHub

Posts, discussions & more

All Versions
View community →
Seed Analyzer
Seed Analyzer

World seed analysis

Loot Explorer
Loot Explorer

Drop rates

Crafting Calculator
Crafting Calculator

Material planning

Enchant Calculator
Enchant Calculator

Probability math

Redstone Lab
Redstone Lab

Signal timing

Trading Profit
Trading Profit

Villager ROI

All Versions
View all tools →
Mods
Mods

Browse all mods

Plugins
Plugins

Server plugins

Resource Packs
Resource Packs

Textures & sounds

Shaders
Shaders

Visual enhancements

Datapacks
Datapacks

World logic

Scanner
Mod Intelligence

Scan & analyze any mod

All Versions
View all mods →
Loading...
IntroductionIntroductionVersion HistoryVersion HistoryGuidesGuidesBlog & NewsBlog & News
ItemsItemsBlocksBlocksMobsMobsRecipesRecipesBiomesBiomesStructuresStructuresAdvancementsAdvancementsLoot TablesLoot TablesTagsTags
ModsModsPluginsPluginsResource PacksResource PacksShadersShadersDatapacksDatapacks

MinecraftBible

The Ultimate Wiki

Logo
MINECRAFTBIBLE

The ultimate Minecraft reference. Every item, block, mob, and recipe documented with precision.

Community

  • Skin Browser
  • Cape Gallery
  • Seed Vault
  • Blog
  • Guides

Database

  • Items
  • Blocks
  • Mobs
  • Recipes
  • Biomes
  • Structures

Tools

  • Seed Analyzer
  • Mod Intelligence
  • Crafting Calculator
  • Enchant Calculator

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

Site & Legal

  • About
  • Authors
  • Editorial Policy
  • Corrections
  • Contact
  • Privacy Policy
  • Terms of Service
  • DMCA
  • Sitemap

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
Simple Chairs
PluginMIT

Simple Chairs

A simple, lightweight, and fast plugin for sitting on blocks

3
Downloads
0
Followers
4 months ago
Updated
📦
1
Versions
decorationgame-mechanicsutilitypaperspigot
Download Latestv1.0.0View on Modrinth

📖About Simple Chairs

Simple plugin for Paper/Spigot that allows users to sit on blocks and on the ground

❇️​ This plugin belongs to the Simple Plugins collection, check out other similar and compatible plugins here

Features

  • Players can sit on blocks!
    • Stairs and slabs enabled by default
    • You can add any block to the list
  • Sit on the ground with /sit
  • Enables players to crawl (optional)
  • Support for WorldGuard: Sitting is blocked in regions that have the chairs-deny flag
  • All configuration is read from config.yml
  • Configurable prefix for plugin messages (prefix)

Commands

  • /sit Sit on the ground at your current position
  • /crawl Crawl on the ground (optional)
  • /chairs reload Reloads the plugin configuration

To sit on enabled blocks (stairs and slabs) you only need to right-click

Permissions

  • schairs.sit: Allows right-clicking to sit down (default: true)
  • schairs.sit.command: Allows you to use /sit to sit anywhere
  • schairs.crawl: Allows you to use /crawl (disabled in config by default)
  • schairs.reload:* Allows you to reload the configuration (default: OP)

Configuration

prefix: "&7[&6Chairs&7] &r"
stand-when-damaged: false
sneak-to-stand: true
return-on-stand: false
stand-when-block-breaks: true
allow-unsafe-sit: false
one-block-per-chair: true
sit-center-on-block: true
sit-bottom-part-only: true
sit-empty-hand-only: true
sit-max-distance: 0
sit-max-block-height: 2
features:
  crawl-enabled: true
crawl-sneak-to-stand: true
crawl-double-sneak: false
worldguard-integration: true
world-filter-enabled: false
worlds:
  - "world"
material-blacklist:
  - "LAVA"
  - "FIRE"
persist-sit-hint: false
persist-crawl-hint: false

sit-blocks:
  - "stairs"
  - "slabs"
  - "#carpets"

plugin-messages:
  no-permission: "&cYou do not have permission"
  world-not-allowed: "&cYou cannot use this in this world"
  player-only: "&cThis command can only be executed by a player"
  reload-success: "&aConfiguration reloaded successfully"
  reload-no-permission: "&cYou do not have permission to reload the configuration"
  usage: "&7Usage: &f/<command> [reload]"
  feature-disabled: "&cThis feature is disabled"

player-messages:
  sit-hint: "&6Sneak&f to get up"
  already-sitting: "&cYou're already sitting"
  chair-occupied: "&cSomeone is already sitting here"
  • stand-when-damaged, sneak-to-stand, return-on-stand, stand-when-block-breaks: Stand up on damage, on sneak, return to previous position, or when block breaks (defaults: false, true, false, true)
  • allow-unsafe-sit: Allow sitting in unsafe locations (default: false)
  • one-block-per-chair, sit-center-on-block, sit-bottom-part-only, sit-empty-hand-only: One per block; center on block; bottom part only; empty hand to sit (default: true)
  • sit-max-distance, sit-max-block-height: Max distance (0 = unlimited) and max height to sit
  • features.crawl-enabled: Enable/disable /crawl (default: true). When false, the command is disabled
  • crawl-sneak-to-stand, crawl-double-sneak: Sneak to stop crawl; double-sneak (looking down) to start crawl (default: true, false)
  • worldguard-integration, world-filter-enabled, worlds, material-blacklist: WorldGuard, world filter, material blacklist
  • sit-blocks: stairs, slabs, carpets. Entries starting with # are disabled
  • plugin-messages, player-messages: Chat (with prefix) and action bar (no prefix). feature-disabled when a feature is off.

Requirements

  • Java 21 (LTS)
  • Paper or Spigot server on the latest supported version

Internal behaviour

  • Sitting uses an invisible armor stand marked with PDC metadata; the stand is removed when the player dismounts or when the plugin is disabled
  • WorldGuard is optional (soft dependency). If present and worldguard-integration is true, the plugin registers the chairs-deny flag and blocks sitting in regions where it is set to allow
  • On enable and on player join, any armor stands marked as SimpleChairs (e.g. left after a crash) are removed so players do not stay mounted on “ghost” chairs

👥 Team & Contributors

sardidefcon
sardidefconOwner

⚙️ Compatibility

Environment
🖥️ Server-side
Loaders
paperspigot
Minecraft Versions
1.211.21.11.21.21.21.31.21.41.21.51.21.61.21.7+4 more

🔗 Links

Modrinth Page