osmanfurkan115 / hCore

Core plugin for spigot developers.

Home Page:https://www.spigotmc.org/resources/101509

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

hCore

A simplified and multi-functional tool for spigot developers. There are dozens of features you can use in it, and it is completely open source code. hCore supports all versions from 1.8.x to 1.18.2. Also you can find all these APIs usages from here.

Developers

Features

  • Command - Basic command system for registering commands without plugin.yml.
  • Database - Database implementation system for multi-database support.
  • Hologram - Hologram system for creating and managing client-side holograms.
  • Message - Message system to send title, action-bar or boss-bar to player.
  • Packet - Packet system to listen to the packet and send it to the player.
  • Particle - Particle system to play particle effects client-side for any player.
  • Renderer - Renderer system for rendering and sending the package to the closest players.
  • Scheduler - Scheduler system to easily create new scheduler.
  • Inventory - Inventory system for creating and opening special inventories for players.
  • Sign - Sign system for receiving input from the player.
  • WorldBorder - WorldBorder system to display WorldBorder client-side.
  • HItemStack - HItemStack class for creating item stacks and manage stacks easily.
  • HYaml - Basic yaml system for creating and manage yamls easily.
  • HSpam - Spam system to check if the given ID is spamming.

How to add it to Maven or Gradle?

Maven

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

<dependency>
    <groupId>com.github.hakan-krgn.hCore</groupId>
    <artifactId>bukkit</artifactId>
    <version>0.1.7</version>
</dependency>


<!--If you want to use this api without libraries, you can use below dependency -->
<dependency>
    <groupId>com.github.hakan-krgn.hCore</groupId>
    <artifactId>bukkit-primary</artifactId>
    <version>0.1.7</version>
</dependency>

Gradle

repositories {
  maven { url 'https://jitpack.io' }
}

dependencies {
  implementation 'com.github.hakan-krgn.hCore:bukkit:0.1.7'
}

About

Core plugin for spigot developers.

https://www.spigotmc.org/resources/101509

License:MIT License


Languages

Language:Java 100.0%