Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

71 total results found

Creating A Custom Fragment Generator Lua

InsurgenceSets Developer API

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

InsurgenceSets Messages

Insert the Prefix from settings.yml into any message just add {prefix} to the message

Json

InsurgenceSets Messages

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

InsurgenceSets Messages

You can also show the players name by inserting {player} into the message

Send Message As Action Bar

InsurgenceSets Messages

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

InsurgenceSets Messages

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

InsurgenceSets Messages

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

InsurgenceSets Messages

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

InsurgenceSets Messages

To center a message in chat add <center> to the start of the message.

EdPrison

InsurgenceSets Booster Types

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

InsurgenceSets Booster Types

We support Vaults Money currency Boosts: - Namespace: CURRENCY Type: Money Percent: false Settings: Boost_Amount: 10

Creating An Addon

InsurgenceSets Developer API

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

InsurgenceSets Developer API

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

InsurgenceSets Developer API

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...

Installing The Plugin

InsurgenceBoosters Setup

After downloading the plugin from BuiltByBit, place it in the plugins folder on your server. That's it! InsurgenceBoosters | Boosters

Creating Your First Booster

InsurgenceBoosters Setup

The command below can be used to generate a booster. It will produce an automatically generated booster file that you can customize to your preference! /iboosters create <type> <namespace>Type: Can be anything that describes the kind of booster it will be. Ta...

Prefix

InsurgenceBoosters Messages

Insert the Prefix from settings.yml into any message just add {prefix} to the message

Json

InsurgenceBoosters Messages

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

InsurgenceBoosters Messages

You can also show the players name by inserting {player} into the message

Send Message As Action Bar

InsurgenceBoosters Messages

You can choose to send a chat message as an actionbar instead by adding <actionbar> to the start of the message