Advanced Search
Search Results
35 total results found
Creating A Custom Fragment Generator Lua
It is possible to use Lua to develop a simple or new fragment generator for additional events. First create a new folder in /Isets/ named fragment-generators should be like /Isets/fragment-generators/. Once that is done, you should create a new file. You can ...
Prefix
Insert the Prefix from settings.yml into any message just add {prefix} to the message
Json
Minecraft allows you to create more advanced messages using Json you can use a json text generator like this one here To use json in a message all you have to do is put [JSON] at the start of the message Example: "[JSON]["",{"text":"Example ","color":"...
Player variable
You can also show the players name by inserting {player} into the message
Send Message As Action Bar
You can choose to send a chat message as an actionbar instead by adding <actionbar> to the start of the message
Send Message As Toast
You can choose to send a chat message as a toast by adding <toast> to the start of the message
Send Message As A Title
You can choose to send a chat message as a title by adding <title> to the start of the message
Send Message As A Boss Bar
You can choose to send a chat message as a bossbar by adding <bossbar> to the start of the message, it will show a boss bar for 10 seconds.
Center A Message In Chat
To center a message in chat add <center> to the start of the message.
EdPrison
We support all EdPrison currencies Example: Boosts: - Namespace: CURRENCY Type: Tokens Percent: false Settings: Boost_Amount: 10 We support boosting of all EdPrison enchants Example: ...
Vault
We support Vaults Money currency Boosts: - Namespace: CURRENCY Type: Money Percent: false Settings: Boost_Amount: 10
Creating An Addon
Setup a new project then right click the project and create a directory called libs. Once that is done drag in the latest version of ISets Download example project here Setting up the pom.xml You will have to add a dependency pointing to ISets in the lib...
Creating A New Fragment Generator Java
We made it easy to create new custom fragment generators Create a new class in your project and have it extend FragmentGenerator Once that is done, you should implement its methods public final class ExampleGenerator extends FragmentGenerator { ...
Creating A New Currency Java
Creating a new currency is very easy; simply extend our Currency class Currency After extending the class, ensure to implement its methods, resulting in a class structured as depicted below package org.insurgencedev.mobcoins; import lombok.NonNull; impo...
Creating Addon Lua
To accommodate addons that necessitate only a minimal amount of code, we have introduced the option to utilize Lua in place of Java. The process of establishing a Lua addon is straightforward and user-friendly. Setting up the addon Addons require these fie...