### MythicMobs ServerItem Skill Example Source: https://github.com/emanondev/itemedit/wiki/Home Example of using a ServerItem within a MythicMobs skill, including amount, maximum amount, and trigger conditions. ```yaml - 'dropserveritem{id=gold;amount=5;amountmax=10;chance=0.5} @Self ~onDamaged <50%' ``` -------------------------------- ### PlaceholderAPI Placeholder Example 1 Source: https://github.com/emanondev/itemedit/wiki/Home Example of using the ItemEdit PlaceholderAPI placeholder to display the amount of a specific item in the player's inventory. ```plaintext %itemedit_amount_{my_item_id}% ``` -------------------------------- ### PlaceholderAPI Placeholder Example 2 Source: https://github.com/emanondev/itemedit/wiki/Home Example of using the ItemEdit PlaceholderAPI placeholder to display the amount of a specific item in the player's offhand slot. ```plaintext %itemedit_amount_{special_sword}_{offhand}% ``` -------------------------------- ### MythicMobs ServerItem Drop Example Source: https://github.com/emanondev/itemedit/wiki/Home Example of dropping a ServerItem with MythicMobs, specifying the item ID, amount, drop chance, and success chance. ```yaml - 'serveritem{id=gold;amount=2} 1 1' ``` -------------------------------- ### PlaceholderAPI Placeholder Example 3 Source: https://github.com/emanondev/itemedit/wiki/Home Example of using the ItemEdit PlaceholderAPI placeholder to display the amount of a specific item in another player's head equipment slot. ```plaintext %itemedit_amount_{newton_apple}_{head}_{newton}% ``` -------------------------------- ### ShopGuiPlus Item Configuration Source: https://github.com/emanondev/itemedit/wiki/Home Configure ServerItem items within ShopGuiPlus shops. Ensure the 'serveritem' ID is correctly specified. ```yaml 1: type: item item: serveritem: quantity: 1 buyPrice: 80 sellPrice: 20 slot: 34 ``` -------------------------------- ### MythicMobs ServerItem Skill Syntax Source: https://github.com/emanondev/itemedit/wiki/Home Integrate ServerItem drops into MythicMobs skills. Configure item ID, amount, chance, and targeter options. ```yaml - 'dropserveritem{id=;amount=[amount=1];chance=[chance=1];amountmax=[maximus amount=amount}} @targeter{options=value} ~onTrigger =/ HealthModifier' ``` -------------------------------- ### MythicMobs ServerItem Drop Syntax Source: https://github.com/emanondev/itemedit/wiki/Home Use ServerItem(s) as drops for mobs or in drop tables within MythicMobs. Specify the item ID and amount. ```yaml - 'serveritem{id=;amount=[amount=1]} ' ``` -------------------------------- ### Maven Dependency for ItemEdit API Source: https://github.com/emanondev/itemedit/wiki/Home Add the ItemEdit plugin as a dependency in your project's pom.xml file using Maven. Ensure the JitPack repository is included. ```xml jitpack.io https://jitpack.io com.github.emanondev ItemEdit 2.17 provided ``` -------------------------------- ### Gradle Dependency for ItemEdit API Source: https://github.com/emanondev/itemedit/wiki/Home Include the ItemEdit plugin as a dependency in your Gradle build file. Make sure to add the JitPack repository. ```gradle repositories { maven { url = 'https://jitpack.io' } } dependencies { compileOnly 'com.github.emanondev:ItemEdit:2.17' } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.