--[ 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!![]()
--[ 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![]()
--[ 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.
![]()
--[ Supreme Set + Trap Fix + 25% Sale ]--
[+] Added Supreme Set
[+] Fixed Trap Effect
[+] 25% Sale for Black Friday![]()
--[ Suffocation + Recode ]--
[+] Suffocation Effect Adjustments
- Added radius configurability in config.yml
- Added Factions Compatibility
Regenerate Config.yml
[+] Optimised all code
[+] Recoded Most Effects
![]()
--[ 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
![]()
[+] Fixed crates giving all sets instead of ones in the list
NOTE: Please regenerate your config.yml!
[+] 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"))); } } }
