개인 자료란 (JE)

  서버 커뮤니티

Profile 오캣진 대표칭호 없음
Profile

질문하기 Java

플레이어가 죽으면 세계를 리셋하는 방법

2023.06.17 조회 수 51 추천 수 0
이해도 초보자 
게임버전 (JE) 1.20 
게임버전 (BE) 관련없음 

플러그인으로 플레이어가 죽으면 서버를 종료하지 않고 새 월드로 초기화하는 방법이 있을까요?

4개의 댓글

윈초
2023.06.18
World world = player.getWorld();
Bukkit.unloadWorld(world, false);

Bukkit.createWorld(new WorldCreator(world.getName()).type(WorldType.NORMAL));
World newWorld = Bukkit.getWorld(world.getName());

for (Player player : Bukkit.getOnlinePlayers()) {
    player.teleport(newWorld.getSpawnLocation());
}
오캣진
2023.06.18
@윈초

리스폰 장소로만 이동하고 끝나는데 혹시 추가 설명 가능한가여?

오캣진
2023.06.18
@오캣진

코드입니다.

 

@EventHandler

public void onPlayerDeath(PlayerDeathEvent event) {

Player player = event.getEntity();

String playerName = player.getName();

 

// Show "Dead Player" in the title for 3 seconds

showSupTitle(player, ChatColor.RED + "[ 사망 ]", "범인 : " + playerName , 3);

 

// Schedule a task to display the countdown

new BukkitRunnable() {

int time = 10;

 

@Override

public void run() {

if (time == 0) {

// Clear the title after the countdown ends

player.sendTitle("", "", 0, 20, 10);

World world = player.getWorld();

Bukkit.unloadWorld(world, false);

 

Bukkit.createWorld(new WorldCreator(world.getName()).type(WorldType.NORMAL));

World newWorld = Bukkit.getWorld(world.getName());

 

for (Player allplayer : Bukkit.getOnlinePlayers()) {

allplayer.teleport(newWorld.getSpawnLocation());

}

cancel();

return;

}

// Update the title with the remaining countdown time

showSupTitle(player, ChatColor.GREEN + "[ 서버 초기화 ]", time + "초" , 0);

time--;

}

}.runTaskTimer(this, 60, 20); // Run the task every second

}

윈초
2023.06.18
@오캣진

같은 시드로 생성되서 그럴거에요. 근처에 블록 설치하고 테스트해봐주시겠어요?

뉴스 및 창작물
/files/thumbnails/268/789/003/262x150.crop.jpg?20240515192032

레드스톤

벌레먹은 돌 빠르게 제거하는 법

GlassesFilm

2024-05-15

0

/files/thumbnails/797/788/003/262x150.crop.jpg?20240515090924

건축

마인크래프트로 구현한 카르카손 보드게임

Warak

2024-05-15

1

/files/thumbnails/487/784/003/262x150.crop.jpg?20240508233607

모드

Windows Borderless 모드에서 악성코드 발견 2

학교가기싫다

2024-05-08

1

/files/thumbnails/384/778/003/262x150.crop.jpg?20240512002324

업데이트

마인크래프트 자바 에디션 스냅샷 24w18a

학교가기싫다

2024-05-06

0

/files/thumbnails/855/781/003/262x150.crop.jpg?20240505141129

레드스톤

레이저 클리너

GlassesFilm

2024-05-05

1