Advertisement
Guest User

Untitled

a guest
Oct 7th, 2016
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. }
  2. if (args[0].equalsIgnoreCase(">nv"))
  3. {
  4. if ((e.getPlayer().hasPotionEffect(PotionEffectType.NIGHT_VISION)))
  5. {
  6. e.getPlayer().removePotionEffect(PotionEffectType.NIGHT_VISION);
  7. e.getPlayer().sendMessage("§4§lRekcah §7➤ §c§lNight Vision Disabled!");
  8. e.setCancelled(true);
  9.  
  10. } else {
  11. e.getPlayer().addPotionEffect(new PotionEffect(PotionEffectType.NIGHT_VISION, 100000, 1));
  12. e.getPlayer().sendMessage("§4§lRekcah §7➤ §a§lNight Vision Enabled!");
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement