UPDATE 2.8:
{+} Hunger Loss effect (Hunger_Loss) [Players do not lose hunger]
{+} Forgot to register Push Away effect
{+} Fixed a couple of bugs
UPDATE 2.9:
{+} More Effects:
- Fly [Allow users to fly with a full set]
- Bow_Damage [Allow users to deal more damage with bows when wearing a full set]
{+} New Thread Design [You are not allowed to steal/use the artwork used in the thread as it belongs to me]
{+} Small Bug Fixes
UPDATE 2.95:
{+} Added More Effects:
- Fall_Damage: Cancel the act of fall damage for players who have a full set of the armor set.
{+} Additions to the API
Code:
Code:
hasFullSet(Player p) - Check if player has a full set
isArmorPiece(ItemStack item) - Check if the item is a piece of the set
UPDATE NO.3.0:
[+] Added Weapons
UPDATE 3.1:
[+] Added Equipment Lootbox
Usage: /ea crate <player> <amount>
UPDATE 3.2:
[+] Added Equipment Lootbox Animation
UPDATE 3.3:
[+] Fixed a couple of bugs
[+] Added plugin metrics
UPDATE 3.4:
[+] Fixed issue with potions all being removed when a set is taken off
[+] Fixed NPE with right-clicking anything.
UPDATE 3.5:
[+] Added sets.yml
[+] Fixed a couple of bugs
UPDATE 3.55:
[+] Added Heroic Armor Upgrades
/ea upgrade <player> <set> <percentage>
[+] Tons of fixes
NOTE: This is the beta version of the armor upgrades, use at your own risk (Don't use upgrades on a working server)
UPDATE 3.6:
[+] Completely fixed Heroic Upgrades (You can use on a working server now)
[+] Fixed /ea gui
[+] Fixed a ton of bugs and errors
[!] Many of you have been wondering why I upped the price of this plugin from $4.99 to $6.50, This is because the number of features in this plugin is beyond any other plugin and $4.99 was not enough for me to continue (Paypal take a cut so it was $4.45). I'm sorry if this put off some people from purchasing this plugin but I hope you can understand.
UPDATE 3.7:
[+] Added Heroic Armor that you can set in the config
Replace the material with 'HEROIC_HELMET' etc.
Code:
Helmet:
Enchants:
- 'PROTECTION_ENVIRONMENTAL:4'
- 'DURABILITY:3'
Material: "HEROIC_HELMET"
Name: "&7&lHeroic Helmet"
Lore:
- '&7Heroic Helmet is cool'
- ''
- '&4This is stronger than diamond!'
[+] Added panes to empty slots in the lootbox animation
UPDATE 3.75:
[+] Fixed Heroic Armor making players invincible
[+] Added New Effect
Teleport:
Allow players to teleport behind their attacker at a set chance
'Teleport:CHANCE'
UPDATE 3.76:
[+] Added a configurable heroic armor line (The bit that says "This is stronger than diamond" when you apply a upgrade)
Code:
Heroic_Armor:
lore_line: "&4This is stronger than diamond!"
Add this bit to the config.yml
UPDATE 3.77:
[+] Small Additions to the Armor List GUI
UPDATE 3.8:
[+] Fixed /ea reload issue
[+] Fixed Suffocation and Smite effect
[+] Added adjustments
Config.yml
Code:
Effects:
Suffocation:
Damage:
Max: 10
Min: 5
Smite:
Message: "&f&l(!) &7%player% &fhas just activated the Revenge of Yijki"
NOTE: Please either add this bit into your config.yml or delete and regenerate your config.yml
[+] Fixed a ton of NPE
UPDATE 4.0:
Code (Text):
[+] Create your own effects using the new additions to the API.
EXAMPLE:
Code:
@EventHandler
public void onDamage(EntityDamageByEntityEvent e){
// Check to see if both entities are Players, However you can change this.
if (e.getDamager() instanceof Player && e.getEntity() instanceof Player) {
Player player = (Player) e.getEntity();
Player damager = (Player) e.getDamager();
// Here you would write the player and the effect name that you would add in the config
// NOTE: Make sure the effect is in lowercase!
if (hasEffect(player, "poison")){
damager.addPotionEffect(new PotionEffect(PotionEffectType.POISON,
60, getPercentage(player, "poison")));
}
}
}
UPDATE 4.1:
[+] Fixed crates giving all sets instead of ones in the list
NOTE: Please regenerate your config.yml!
UPDATE 4.2:
--[ NEW Effects + Bug Fixes ]--
[+] Trap effect
Immobilise attackers for 5 seconds
[+] Optimised all code
[+] Nerfed Heroic Armor
[+] Fixed a couple of issues with certain effects
- --[ NEW Weapon Effect ]--
[+] Added Dura_Damage weapon effect ("dura_damage")
Increase the amount of durability damage done by a weapon with the effect (Amount of damage is configurable in the config.yml
DURA_DAMAGE : PERCENTAGE
- NEW Effects + Adjustments
--[ NEW Effects + Adjustments ]--
[+] Added Dura effect ("dura")
Reduce the amount of durability damage the player takes
DURA : PERCENTAGE
[+] Adjusted the Push_Away effect. It is now fully customisable in your config.yml, just regenerate it.
- UPDATE 4.38: Bug Fixes + WorldGuard Support
--[ Bug Fixes + WorldGuard Support ]--
[+] Fixed Bug in which players were able to activate effects like suffocation and smite in pvp disabled areas (Uses WorldGuard)
[+] Added WorldGuard Support
My Birthday sale is now over!
- UPDATE 4.37: Support Skulls + Data
--[ Support Skulls + Data ]--
[+] Added support with SKULL_ITEM
[+] Added Data support
Using both features added you can create your own custom sets with custom helmets.
NOTE: You will need to regenerate your sets.yml to use this update, or just add Data: 0 below each material in the sets.yml
- UPDATE 4.36: Reload Command Fix + Birthday Sale
--[ Reload Command Fix + Birthday Sale ]--
[+] Fixed the /ea reload command.
[+] New 25% OFF Birthday Sale!
Today and today only is my birthday sale, you can get this plugin for the cheap price of $4.50.
- UPDATE 4.35: Supreme Set + Trap Fix + 25% Sale
--[ Supreme Set + Trap Fix + 25% Sale ]--
[+] Added Supreme Set
[+] Fixed Trap Effect
[+] 25% Sale for Black Friday
UPDATE 4.3: Suffocation + Recode
- --[ Suffocation + Recode ]--
[+] Suffocation Effect Adjustments
- Added radius configurability in config.yml
- Added Factions Compatibility
Regenerate Config.yml
[+] Optimised all code
[+] Recoded Most Effects