블록을 깨면 나를 공격하지 않는 좀비가 나오게 코딩
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
}
}
}
'마인크래프트' 카테고리의 다른 글
다른 몹이 나를 공격하면, 그 몹을 공격하는 좀비 코딩 (0) | 2025.03.19 |
---|---|
블록을 깨면 나를 따라오지만, 공격하지 않는 좀비 코딩 (0) | 2025.03.19 |
블록을 깨면 그 위치에 좀비가 나오게 코딩 (0) | 2025.03.19 |
spigot plugin 설정 (0) | 2025.03.18 |
Minecraft 이전 (1) | 2025.02.22 |