블록을 깨면 나를 공격하지 않는 좀비가 나오게 코딩

2025. 3. 19. 22:28마인크래프트

    @EventHandler
    public void onBlockBreak(BlockBreakEvent event) {
        Player player = event.getPlayer();
        Location blockLocation = event.getBlock().getLocation();

        // Spawn a zombie at the block location
        Zombie zombie = (Zombie) blockLocation.getWorld().spawn(blockLocation.add(0, 1, 0), Zombie.class);

        // Set properties to make it friendly
        zombie.setCustomName("Friendly Zombie");
        zombie.setCustomNameVisible(true);
        zombie.setAdult();
        zombie.setAI(true);
        zombie.setCollidable(false);
        zombie.setCanPickupItems(false);
        zombie.setRemoveWhenFarAway(false);
        zombie.setTarget(null);

        // Prevent the zombie from attacking the player
        new BukkitRunnable() {
            @Override
            public void run() {
                zombie.setTarget(null); // Ensure it doesn’t target anyone
            }
        }.runTaskLater(this, 1L);
    }

    @EventHandler
    public void onZombieTarget(EntityTargetLivingEntityEvent event) {
        if (event.getEntity() instanceof Zombie && event.getTarget() instanceof Player) {
            Zombie zombie = (Zombie) event.getEntity();
            if ("Friendly Zombie".equals(zombie.getCustomName())) {
                event.setCancelled(true); // Cancel targeting if it's the friendly zombie
            }
        }
    }