SimpleCrawling
๐ก Updated this year๐ผ๏ธ Gallery (1 images)
๐ Analysis
- ๐ #751 of 1317 bukkit mods in this game by downloads
๐ About This Mod
<div align="center"> <h1>๐ง SimpleCrawling</h1> <b>A lightweight crawling plugin with double-shift activation, reload support, and API hooks for developers.</b><br><br> <img src="https://i.ibb.co/pBG4GR3c/Screenshot-2026-03-28-at-01-07-19.png" alt="SimpleCrawling Screenshot" style="max-width: 100%; border-radius: 8px;" /><br><br> <img src="https://raw.githubusercontent.com/ladakx/Ladakx/main/bukkit.svg" alt="Bukkit" /> <img src="https://raw.githubusercontent.com/ladakx/Ladakx/main/spigot.svg" alt="Spigot" /> <img src="https://raw.githubusercontent.com/ladakx/Ladakx/main/paper.svg" alt="Paper" /> <img src="https://raw.githubusercontent.com/ladakx/Ladakx/main/purpur.svg" alt="Purpur" /> <img src="https://raw.githubusercontent.com/ladakx/Ladakx/main/folia.svg" alt="Folia" /> </div> --- <h3 align="center">๐ OVERVIEW & HOW IT WORKS</h3> **SimpleCrawling** adds manual crawling to your server in a clean and intuitive way. It works perfectly for survival, roleplay, adventure maps, stealth systems, minigames, and any server that wants a manual crawling mechanic without unnecessary complexity. **How Does It Work?** SimpleCrawling listens for a quick **double sneak (shift)** input. When a player triggers crawling, the plugin places them into a crawl state and keeps that state active while they move. If the player toggles crawling off, disconnects, or the plugin is disabled, the crawling session is stopped safely. *No bloated setup, no unnecessary complexity, just a practical crawling mechanic with useful API support.* --- <h3 align="center">โจ PLUGIN FEATURES</h3> * **Double-Shift Activation:** Quick double-shift to start crawling. * **Toggle-Based System:** Players remain in crawl mode until intentionally stopped. * **Highly Configurable:** Reload command, customizable messages, and configurable hitbox offsets. * **Robust Developer API:** Methods for starting, stopping, and checking crawl state. * **Custom Events:** Cancellable events for easy integration. * **Optimized:** Lightweight and simple to use. --- <h3 align="center">โ๏ธ COMMANDS & PERMISSIONS</h3> | Command | Permission | Description | | :--- | :--- | :--- | | `/simplecrawling reload` *or* `/scrawl reload` | `simplecrawling.reload` | Reloads the plugin config and message file *(Default: OP)* | --- <h3 align="center">๐ ๏ธ CONFIGURATION</h3> The configuration is straightforward and gives you full control: * **hitbox-offset:** Controls the vertical offset used by the crawling system. * **Messages:** Fully customize all plugin messages through a separate messages file. --- <h3 align="center">๐ป DEVELOPER API</h3> SimpleCrawling includes a robust API for plugin developers who want to control crawling through code or restrict it in certain areas. **Methods:** ```java plugin.startCrawling(player); plugin.stopCrawling(player); plugin.isCrawling(player); plugin.forceStartCrawling(player); plugin.forceStopCrawling(player); ``` **Events:** * `PlayerStartCrawlingEvent` * `PlayerStopCrawlingEvent` Both events are **cancellable**, meaning other plugins can easily prevent a player from starting or stopping a crawl when needed. **Example Usage:** ```java @EventHandler public void onStart(PlayerStartCrawlingEvent event) { if (event.getPlayer().hasPermission("crawl.blocked")) { event.setCancelled(true); } } ``` --- <h3 align="center">๐ LINKS & SUPPORT</h3> <div align="center"> <p>If you encounter any issues or need help with the API, feel free to reach out!</p> <a href="https://discord.gg/EzXaxQCFQR"><img src="https://raw.githubusercontent.com/ladakx/Ladakx/main/discord.svg" alt="Discord" /></a> <a href="https://github.com/ladakx/SimpleCrawling/wiki"><img src="https://raw.githubusercontent.com/ladakx/Ladakx/main/doc.svg" alt="Documentation" /></a> <br><br> <h4 style="color:#E53935"><b>SUPPORT THE PROJECT</b></h4> <a href="https://ko-fi.com/ladakx"><img src="https://raw.githubusercontent.com/ladakx/Ladakx/main/kofi.svg" alt="Ko-fi" /></a> <a href="https://www.patreon.com/posts/155880131"><img src="https://raw.githubusercontent.com/ladakx/Ladakx/main/patreon.svg" alt="Patreon" /></a> <p><b>PayPal:</b> emsockz1@gmail.com</p> </div> --- <div align="center"> <b><a href="https://bstats.org/plugin/bukkit/SimpleCrawling/30436">Plugin Statistics</a></b><br><br> <a href="https://bstats.org/plugin/bukkit/SimpleCrawling/30436"> <img src="https://bstats.org/signatures/bukkit/SimpleCrawling.svg" alt="bStats" /> </a> </div>
๐ง SimpleCrawling
A lightweight crawling plugin with double-shift activation, reload support, and API hooks for developers.
๐ OVERVIEW & HOW IT WORKS
SimpleCrawling adds manual crawling to your server in a clean and intuitive way. It works perfectly for survival, roleplay, adventure maps, stealth systems, minigames, and any server that wants a manual crawling mechanic without unnecessary complexity.
How Does It Work? SimpleCrawling listens for a quick double sneak (shift) input. When a player triggers crawling, the plugin places them into a crawl state and keeps that state active while they move. If the player toggles crawling off, disconnects, or the plugin is disabled, the crawling session is stopped safely.
No bloated setup, no unnecessary complexity, just a practical crawling mechanic with useful API support.
โจ PLUGIN FEATURES
Double-Shift Activation: Quick double-shift to start crawling. Toggle-Based System: Players remain in crawl mode until intentionally stopped. Highly Configurable: Reload command, customizable messages, and configurable hitbox offsets. Robust Developer API: Methods for starting, stopping, and checking crawl state. Custom Events: Cancellable events for easy integration. Optimized: Lightweight and simple to use.
โ๏ธ COMMANDS & PERMISSIONS
| Command | Permission | Description | | :--- | :--- | :--- | | `/simplecrawling reload` or `/scrawl reload` | `simplecrawling.reload` | Reloads the plugin config and message file (Default: OP) |
๐ ๏ธ CONFIGURATION
The configuration is straightforward and gives you full control: hitbox-offset: Controls the vertical offset used by the crawling system. Messages: Fully customize all plugin messages through a separate messages file.
๐ป DEVELOPER API
SimpleCrawling includes a robust API for plugin developers who want to control crawling through code or restrict it in certain areas.
Methods: ```java plugin.startCrawling(player); plugin.stopCrawling(player); plugin.isCrawling(player);
plugin.forceStartCrawling(player); plugin.forceStopCrawling(player); ```
Events: `PlayerStartCrawlingEvent` `PlayerStopCrawlingEvent`
Both events are cancellable, meaning other plugins can easily prevent a player from starting or stopping a crawl when needed.
Example Usage: ```java @EventHandler public void onStart(PlayerStartCrawlingEvent event) { if (event.getPlayer().hasPermission("crawl.blocked")) { event.setCancelled(true); } } ```
๐ LINKS & SUPPORT
If you encounter any issues or need help with the API, feel free to reach out!
SUPPORT THE PROJECT
PayPal: emsockz1@gmail.com
๐ Mod Details
- Game
- Minecraft Plugins
- Author
- Ladakx
- Version
- 1.1
- Downloads
- 226
- Endorsements
- 1
- Category
- bukkit
- Created
- 4/25/2026
- Updated
- 4/16/2026
- Game Versions
- 1.18, 1.18.1, 1.18.2, 1.19, 1.19.1
- Tags
- game-mechanics
๐ง How to Install Minecraft Plugins Mods
Download from Modrinth. Use Prism Launcher or drop into your mods folder.
๐ Full step-by-step install guide for Minecraft Plugins โ
Visit the official mod page for specific installation instructions for this mod.
๐ฎ Need cheat codes or console commands? Check ur gaming wiki for Minecraft Plugins commands, item IDs, and more.
โ Frequently Asked Questions
Which Minecraft Plugins versions does SimpleCrawling support?
The author lists 1.18, 1.18.1, 1.18.2, 1.19, 1.19.1, 1.19.2. Other versions may work but are untested by the author.
What is the latest version of SimpleCrawling?
Version 1.1, published 2026-04-16 with 226 downloads recorded at the source.
Keep browsing โ more Minecraft Plugins mods await
