Scythe

Scythe

Plugin

Auto-replant harvested crops!

Server FoodGame MechanicsUtility

3,671 downloads
46 followers
Follow Save
90% of ad revenue goes to creators. Go ad-free while supporting creators with Modrinth Plus. Subscribe today!
Filter loader...
Filter versions...

Scythe 6.1.0

by Rhythmic on May 19, 2025
Download
  • Added the ability to create/require a custom 'scythe' item, note that if this option is enabled, it will override the other tool options.
  • Added command /scythe-item for this, with permissions scythe.item and scythe.item.others for if someone should be able to send the item to another player
  • Config has a command cooldown, can be bypassed by having the scythe.bypass.cooldown permission

Please note that if you use the Custom Scythe item, old versions will continue to be valid even after you have updated the config. Checks are done on a tag on the item so the item cannot be faked, and old versions will remain valid. Currently the way around this for things like crates and stuff would be to use the /scythe-item <player> as a console command, but I will be trying to figure out a better solution for those things

Changelog - 6.0.0

⚠ Important, Config Overhaul ⚠

This update introduces a complete rewrite of the config file. The new config is meant to be clearer, more flexible, and easier to maintain and add new features to.

⚠ Breaking Changes ⚠

  • Old values will NOT automatically migrate.
  • While the plugin will add the new options to your old config, the new comments will not carry over and everything will be put at the top, which will make the file look confusing
  • It is strongly recommended to delete or move your existing config to allow the plugin to generate a new one

Changes

  • Removed left-click and right-click categories in favor of auto-replant and right-click-harvest categories

    • Auto-replant configurations will now be applied regardless of which way the block was broken. Dividing into left and right click added a level of complexity that became exponentially difficult to manage as more features were added.
    • New options
      • require-seeds - whether auto-replanting requires the player to have seeds in their inventory. Will consume seeds.
      • delay-ticks - how long to delay replanting, default 1 tick.
  • Moved and renamed all tool configurations to new tools section

    • replant-tools and replant-tools-item-models are now in this section and renamed to enabled-tools and required-item-models
  • Added the ability to take away tool durability on harvest and replant

    • Please note, this does not affect blocks harvested in the vanilla way, as vanilla harvesting does not remove tool durability.
    • New options are
      • harvest-uses-durability - right-click-harvest will use tool durability
      • replant-uses-durability - automatic replanting will use tool durability
      • prevent-tool-break - whether the plugin will prevent harvest or auto-replant if a tool is below a certain durability threshold
      • minimum-durability - the minimum durability for the previous option
  • Moved and renamed all sound configurations to new sounds section

    • play-sounds has been renamed to enabled under the sounds section
    • sound has been renamed to break-sound
    • sound-volume has been renamed to volume
    • sound-pitch has been renamed to pitch
    • New option has been added: plant-sound
  • Moved and renamed all particle configurations to new particles section

    • break-particles has been renamed to enabled under harvest in the particles section
    • particle-count has been renamed to count under harvest in the particles section
    • particle has been moved under harvest in the particles section
    • New options:
      • harvest section:
        • spread - how far from the center particles should go
      • replant section:
        • enabled - whether replant particles are enabled
        • particle - what particle to use for replant particles
        • count - how many particles to spawn
        • spread - how far from the center particles should go

Scythe 5.2.1

by Rhythmic on Nov 17, 2024
Download
  • Fix broken permission check for /scythe toggle causing the command to not work at all
  • Tested on 1.21.3

Scythe 5.2.0

by Rhythmic on Nov 11, 2024
Download
  • Adds MCMMO compatibility from PR 5
  • Updated to 1.21.3
  • Fixes the mappings so that paper will not remap it.
  • No other changes

Scythe 5.1

by Rhythmic on Jun 25, 2024
Download
  • Adds left-click-replant option, defaults to true
  • Merges #4

Scythe 5.0

by Rhythmic on Apr 29, 2024
Download
  • Update to work on 1.20.5
  • Adds a locale file
  • Any messages that have been altered will need to be changed in the new file locale.yml
  • BLOCK_DUST no longer exists, a new particle will need to be chosen if that is the one being used
  • Small internal changes

Scythe 4.0

by Rhythmic on May 28, 2023
Download

Major version bump

Now version 4.0 - you will need to delete and reload your config, or get the config values from here

⚠️ Functionality previously provided by scythe.use has now been divided into scythe.use.harvest and scythe.use.replant - if you want someone to have access to both harvesting and replanting, they must now have both permissions

What's changed:

  • Changes API dependency version to 1.19
  • Adds event for harvesting
  • Adds permission for harvesting
  • Adds event for replanting
  • Adds permission for replanting
  • Adds event for toggle
  • Adds configuration for sound
  • Adds configuration for sound's pitch
  • Adds configuration for sound's volume
  • Adds configuration for particle
  • Adds configuration for particle quantity
  • Adds configuration for tool requirement for interact-harvest
  • Adds configuration for tool requirement for auto-replant
  • Adds configuration for tool list
  • Refactors new brand name
  • Fixes sub-commands tab-completion not respecting permissions
  • Adjusts sub-command logic

Adds API, currently importable through modrinth

Javadocs

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'
}

Previous releases would not allow players to use right click on crops for normal tasks like placing blocks or bonemealing when right-click-harvest was enabled- this release fixes that

Full Changelog: https://github.com/ADHDMC/Scythe/compare/v3.0...v3.1

3.0

by Rhythmic on Dec 17, 2022
Download

There was some weird stuff with the last version, mainly that the permissions weren't documented properly and there was some hardcoded stuff I didn't notice.

This release should solve those issues There is also now options for particles and sounds when crops are broken with right click

Important Mechanics have been changed slightly. If you are able to harvest things, you won't be able to break crops that haven't fully grown. This is to fix an issue between server and client, where client would send too many break packets, and it'd break the newly placed crop.

  • If you want to be able to break young crops, you can use the toggle command /scythe toggle to turn the scythe mechanics off.
  • You can also restrict the mechanics to only be when someone uses a hoe, so it's less intrusive

What's Changed

  • Added toggle for allowing right-click-harvest
  • Added configurable list of crops
  • Lang options
  • Added bStats

1.0

by Rhythmic on Aug 15, 2022
Download

First release on Modrinth


Project members

Simplexity

Simplexity

Organization

Rhythmic

Owner

Peashooter101

Developer

Details

Licensed MIT
Created 3 years ago
Updated 3 months ago