Scythe - Auto-Replant and Right-Click Harvest Plugin
Main Features
The Scythe mod fundamentally simplifies the farming process in Minecraft by automating the most routine tasks. Instead of manually planting seeds after harvesting crops, the plugin does it for you. Simply collect mature crops - and they will be instantly replanted.
One of the key features is the ability to harvest crops by simply right-clicking on fully grown plants. If you need to temporarily disable this function, just crouch - this will allow breaking blocks in the usual way.
Settings and Configuration
The plugin offers extensive customization options for your server's needs:
- right-click-to-harvest - activates right-click harvesting
- require-tool-for-replant - requires a tool for automatic replanting
- require-tool-for-right-click-harvest - requires a tool for right-click harvesting
- replant-tools - list of allowed tools (specified as in the /give command)
- play-sounds - plays sounds when harvesting
- break-particles - displays particles when breaking blocks
- crops - whitelist of crops affected by the plugin
Commands and Permissions
Available Commands:
/scythe toggle- toggles automatic planting and harvesting functions for the player/scythe reload- reloads the plugin configuration
Permission System:
- scythe.use - basic permission for accessing mod functions
- scythe.use.harvest - allows crop harvesting
- scythe.use.replant - allows automatic replanting
- scythe.toggle - allows toggling functions
- scythe.reload - allows configuration reloading
Developer Integration
Maven:
<repository>
<id>modrinth-repo</id>
<url>https://api.modrinth.com/maven/</url>
</repository>
<dependency>
<groupId>maven.modrinth</groupId>
<artifactId>scythe</artifactId>
<version>4.0</version>
<scope>provided</scope>
</dependency>
Gradle:
exclusiveContent {
forRepository { maven { url = "https://api.modrinth.com/maven" } }
filter { includeGroup "maven.modrinth" }
}
dependencies {
compileOnly 'maven.modrinth:scythe:4.0'
}
Technical Details
For configuring sound and visual effects, the following parameters are available:
- sound - sound type (from Sound enumeration)
- sound-volume - sound volume
- sound-pitch - sound pitch
- particle - particle type (from Particle enumeration)
- particle-count - number of particles displayed
The plugin is distributed under the MIT license, ensuring maximum usage flexibility.