Aeltumn / automated_crafting

An open-source plugin for Paper which adds autocrafters.

Home Page:https://hangar.papermc.io/Aeltumn/Automated-Crafting

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Automated Crafting

This plugin will no longer be updated beyond 1.20.2 as vanilla has introduced the Crafter block making this plugin obsolete.

An open-source plugin for Bukkit which adds autocrafters capable of automatically crafting anything.


How to use (when using default configuration settings)

  1. Place a dropper in the world.

Step 1

  1. Put an item frame on any side of the dropper.

Step 2

  1. Put the item you want to craft in the item frame.

Step 3

  1. Fill up the dropper with the crafting ingredients.

Step 4

  1. Enjoy your new autocrafter!

Step 5



Other Features

  • Autocrafters will put the items inside of containers adjacent to the face of the dropper. This saves performance for servers so players don't need to have hoppers to pick up the items. The dropped item is also always spawned in the same location right in front of the dropper.
  • Powering the dropper will stop the autocrafting process even if there are still items inside.
  • Deny users the permission automatedcrafting.makeautocrafters to prevent them from making auto crafters!
  • There is a configuration file with various options to customize the plugin.



Adding this plugin as a dependency

If you want to use this plugin as a dependency. You can use a very handy service called jitpack.io.
This services makes it easy to add any git repository as a dependency.

Gradle
For Gradle you'll need to add the following six lines to your build.gradle file:

repositories {
     maven { url 'https://jitpack.io' }
}
dependencies {
    implementation 'com.github.Aeltumn:automated_crafting:main-SNAPSHOT'
}

Maven
For Maven you can add the following lines to your pom.xml file:

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>

<dependency>
    <groupId>com.github.Aeltumn</groupId>
    <artifactId>automated_crafting</artifactId>
    <version>main-SNAPSHOT</version>
</dependency>

About

An open-source plugin for Paper which adds autocrafters.

https://hangar.papermc.io/Aeltumn/Automated-Crafting

License:GNU General Public License v3.0


Languages

Language:Java 100.0%