AbilityItemsAPI
🟠 Updated over a year ago🖼️ Gallery (1 images)
🔍 Analysis
- 🏆 #1170 of 1452 bukkit mods in this game by downloads
📋 About This Mod
This plugin makes it easier for developers to make abilities for items.
## Import the API To import the API, you can either use Maven or Gradle. Here's how
```xml
``` maven { url "https://maven.synkdev.cc/releases" }
implementation "cc.synkdev:AbilityitemsAPI:1. 2" ``` _Using Gradle_
## Create your items Creating an item is very straightforward. Here's some code for example
```java ItemStack itemStack = new ItemStack(Material. STICK); ItemMeta meta = itemStack.getItemMeta(); meta.setDisplayName(ChatColor. BOLD+"THE STICK"); itemStack.setItemMeta(meta);
AbilityItem testItem = AbilityItem.newItem("testItem").from(itemStack).lockInSlot().setQuantity(3).setClickEvent(event -> { event.getPlayer().sendMessage(ChatColor. ITALIC+"You clicked da stick..."); }).build(); ``` _This creates a stick named "THE STICK". When a player clicks it, they get the message "You clicked da stick" in the chat._
To give an item to a player, it's also very straightforward:
```java testItem.give(Bukkit.getPlayerExact("Notch")); ```
For full documentation, visit the (https://docs.synkdev.cc/). Here's the maven repository: (https://maven.synkdev.cc/)
📊 Mod Details
- Game
- Minecraft Plugins
- Author
- Synk_
- Version
- 1.3
- Downloads
- 426
- Endorsements
- 3
- Category
- bukkit
- Created
- 8/18/2024
- Updated
- 10/14/2024
- Game Versions
- 1.7.10, 1.8, 1.8.1, 1.8.2, 1.8.3
- Tags
- library, magic, utility
🔧 How to Install Minecraft Plugins Mods
Download from Modrinth. Use Prism Launcher or drop into your mods folder.
📖 Full step-by-step install guide for Minecraft Plugins →
Visit the official mod page for specific installation instructions for this mod.
🎮 Need cheat codes or console commands? Check ur gaming wiki for Minecraft Plugins commands, item IDs, and more.
❓ Frequently Asked Questions
Which Minecraft Plugins versions does AbilityItemsAPI support?
The author lists 1.7.10, 1.8, 1.8.1, 1.8.2, 1.8.3, 1.8.4. Other versions may work but are untested by the author.
What is the latest version of AbilityItemsAPI?
Version 1.3, published 2024-10-14 with 426 downloads recorded at the source.
Keep browsing — more Minecraft Plugins mods await
