/eco

Spigot development library, built for the latest version.

Primary LanguageJavaGNU General Public License v3.0GPL-3.0


eco logo

eco - Simplify spigot development.

Plugin Information

  • Requires ProtocolLib to be installed: get the latest version here
  • Supports 1.16.5+

bStats

Information for development

Javadoc

The 6.0.0 Javadoc can be found here

Plugin Information

eco is a standalone plugin, so you will need to install it on any servers that have plugins which depend on it, and specify it as a dependency in your plugin.yml:

depend:
  - eco

eco is available from any of these places:

Get from JitPack:

Gradle:

repositories {
        maven { url 'https://jitpack.io' }
}
dependencies {
        compileOnly 'com.willfp:eco:Tag'
}

Replace Tag with a release tag for eco, eg 6.0.0.

Maven:

<repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
</repository>
<dependency>
        <groupId>com.willfp</groupId>
        <artifactId>eco</artifactId>
        <version>Tag</version>
        <scope>provided</scope>
</dependency>

Replace Tag with a release tag for eco, eg 6.0.0.

Build locally:

Run the following commands in your terminal of choice.

If you're on windows, you will need to have git bash installed.

git clone https://github.com/Auxilor/eco
cd eco
./gradlew build

Features

Here's a list of some (not all) of the features of eco:

  • Command system with subcommands
  • Reworked config system
  • JSON Config Support
  • Client-Side item display
  • World drop system
  • Event manager
    • PlayerJumpEvent
    • ArmorEquipEvent
    • EntityDeathByEntityEvent
    • NaturalExpGainEvent
  • Plugin extensions (com.willfp.eco.internal.Plugins for plugins)
  • GUI System
  • Integration system for external plugins
    • Anticheat support
      • AAC
      • Matrix
      • NCP
      • Spartan
      • Vulcan
    • Antigrief/Combat support
      • CombatLogX (V10 + V11)
      • FactionsUUID
      • GriefPrevention
      • Kingdoms
      • Lands
      • Towny
      • WorldGuard
    • mcMMO support
    • Custom Items support
      • Oraxen
    • PlaceholderAPI support
  • NMS Proxy / Wrapper system built in
  • Custom Items system
  • Crafting Recipe handler
  • Tuples
  • Support uploading to / downloading from hastebin
  • Packet System (via ProtocolLib)
  • Dependency Injection systems
  • Prerequisite system
  • API additions (via utility classes)
    • Get bow from arrow
    • Break a block as a player
    • Get a vein of blocks
    • Create 2D lists
    • Create NamespacedKeys safely
    • Random number, distribution, roman numerals
    • Set skull texture
    • Format all strings
      • Hex Support
      • Gradient Support
      • Placeholder Support
    • Get a scoreboard team from any color
    • Telekinesis (Drops straight to inventory) system
    • More vector options
  • Update checker
  • bStats integration
  • Reworked systems for:
    • NamespacedKey
    • MetadataValue
    • Runnables / Scheduling

... and a lot more!

License

Click here to read the entire license.