MoreActions
MoreActions is a plugin that enhances player movement with new mechanics like prone crawling and wall climbing.
Quick challenge
How far can you run before the mobs catch you?
Minecraft check
Confirm your run
Complete the quick check to get your code.
MoreActions
MoreActions

A plugin that enables parkour-style actions in a vanilla environment. This plugin allows players to perform dynamic movements like prone, wall climbing, and sliding, bringing a more active and immersive experience to your Minecraft server.
---
Requirements
| | | |---|---| | Server | Spigot or Paper 1.21.1+ | | Java | 21+ |
---
Features
Each feature can be turned on or off. - Sliding — Double tap Shift (sneak) to go prone and move through small spaces. - Sliding — Look at a wall while mid-air to grab it. Press movement keys (W) to climb up and Shift to descend. Climbing takes stamina! - Sliding — Sneak while sprinting to perform a fast forward sliding maneuver.
---
Installation
1. Download `MoreActions-1.0-SNAPSHOT.jar` 2. Place the jar file inside the `plugins/` directory 3. Start the server
---
Configuration (`plugins/MoreActions/config.yml`)
```yaml
MoreActions - Parkour Action Settings
You can configure the enable/disable state and parameters of each action.
=====================
General Settings
=====================
Language (en or ja)
language: "en"
messages:
You can individually configure whether to display chat messages such as action activations.
(UI elements like the stamina bar are always displayed)
prone-start: true prone-stop: true slide-start: true wall-climb-start: true wall-climb-stamina-empty: true wall-climb-max-height: true
=====================
Prone Settings
=====================
prone:
Whether to enable this feature
enabled: true
Maximum time interval for double-tapping Shift (milliseconds)
double-shift-interval: 400
Movement speed multiplier while prone (normal = 1.0)
speed-multiplier: 0.6
===========================
Wall Climb Settings
===========================
wall-climb:
Whether to enable this feature
enabled: true
Ascent speed
climb-speed: 0.15
Descent speed (when descending with Shift)
descend-speed: 0.10
Maximum wall climbing duration (seconds, 0 for unlimited)
max-climb-duration: 5
Maximum climbable height in a single climb (blocks, 0 for unlimited)
max-climb-height: 0
Cooldown time after finishing a wall climb (seconds, 0 for none)
cooldown: 3
Wall facing angle threshold (allowable angle deviation between player pitch/yaw and the wall direction)
facing-angle-threshold: 75
===========================
Sliding Settings
===========================
sliding:
Whether to enable this feature
enabled: true
Initial speed strength (Velocity multiplier)
speed: 1.2
Sliding duration in seconds
duration: 0.6
Cooldown time after sliding ends (seconds, 0 for none)
cooldown: 2 ```