Advanced Search
Search Results
15 total results found
Installing The Plugin
After downloading the plugin from BuiltByBit, place it in the plugins folder on your server. That's it! InsurgenceBoosters | Boosters
Creating Your First Booster
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
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.
Creating an Addon
Assuming you have already created your empty project, you will be required to create a new directory called libs by right-clicking your main folder and clicking New -> Directory. Cope and paste your IBoosters JAR file into that new folder. ...
Creating a Custom Booster (Java)
Below is an example of an Experience booster. When a player receives exp, the amount received will be multiplied based on the boosters that are active. We locate active personal and global boosters of the required Type and Namespace. If located, we apply the a...
Creating an Effect Booster (Java)
Below is an example of how you can create a booster that applies effects to the player Main Class package com.insurgencedev.potioneffectsaddon; import com.insurgencedev.potioneffectsaddon.listeners.BoosterListener; import org.insurgencedev.insurgencebo...
PlaceholderAPI
Below is a list of placeholders that can be used to retrieve data about the boosters. {scope} - Booster scope (Personal or Global){type} - Name of the booster (Money, Token){namespace} - Unique identifier for the booster (CUSTOM, VANILLA) Get how much ti...
Addon Roundup
What are addons? Addons are used to extend the capabilities of the main plugin. We offer free addons which provide support for other plugins and also add additional features to the main plugin. You can view the entire list of addons on BuiltByBit. There are t...