Advertisement
Agentleader1

Blaze Rod teleport to Eye Spot

May 28th, 2015
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. @EventHandler
  2. public void onInteract(PlayerInteractEvent pie){
  3. Player player = pie.getPlayer();
  4. if(pie.getAction().equals(Action.RIGHT_CLICK_BLOCK)){
  5. if(player.getInventory().getItemInHand().getType().equals(Material.BLAZE_ROD)){
  6. pie.setCancelled();
  7. Location loc = player.getTargetBlock(null, 99999).getLocation();
  8. player.teleport(loc);
  9. }
  10. }
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement