개인 자료란 (JE)

  서버 커뮤니티

Profile 오캣진 대표칭호 없음
Profile

질문하기 플러그인

버킷을 켜놓고 월드를 초기화할 수 있나요?

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

플러그인으로 플레이어가 죽으면 자동으로 새로운 월드를 생성하는 것을 만들려고 하는데

버킷을 켜놓고 월드를 초기화하는 것이 가능하나요?

3개의 댓글

0reo
2023.06.17

https://bukkit.org/threads/reset-world-on-command.486926/

오캣진
2023.06.17
@0reo

보고 명령어로 작성해 봤는데, 'An internal error occurred while attempting to perform this command' 라고 뜨네요. 위에 있는 걸로도 해봐도 변화가 없고 어떻게 해야 하나요??

 

public class ResetCommand implements CommandExecutor {

private Hardcore plugin;

 

public ResetCommand(Hardcore plugin) {

this.plugin = plugin;

}

@Override

public boolean onCommand(CommandSender sender, Command command, String label, String[] args) {

Player p = (Player) sender;

FileConfiguration config = plugin.getConfig();

World worldtp = Bukkit.getWorld(config.getString("Spawn.World"));

double x = config.getDouble("Spawn.X");

double y = config.getDouble("Spawn.Y");

double z = config.getDouble("Spawn.Z");

float yaw = (float) config.getDouble("Spawn.Yaw");

float pitch = (float) config.getDouble("Spawn.Pitch");

Location location = new Location(worldtp, x, y, z, yaw, pitch);

World world = p.getWorld(); // The world you want to reset

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

player.teleport(location);

}

 

String worldName = world.getName(); // The world name

 

if (!Bukkit.unloadWorld(world, false)) return false;

 

File worldFolder = new File(plugin.getDataFolder().getParentFile().getParentFile(), worldName); // World folder

worldFolder.delete(); // Delete world folder

 

Bukkit.createWorld(new WorldCreator(worldName)); // Create the world

 

return false;

}

}

0reo
2023.06.18
@오캣진

'An internal error occurred while attempting to perform this command' 는 명령어 실행시 오류나면 어디서든 띄워주는 오류 메세지구요, 아래에 내용을 알려주셔야 뭐라도 해결해볼거같네요

뉴스 및 창작물
/files/thumbnails/576/775/003/262x150.crop.jpg?20240426232553

아티클

이달의 블록: 단단한 진흙

학교가기싫다

2024-04-26

0

/files/thumbnails/115/774/003/262x150.crop.jpg?20240428135129

업데이트

마인크래프트 1.20.5 정식 업데이트

학교가기싫다

2024-04-24

0

/files/thumbnails/762/770/003/262x150.crop.jpg?20240418073724

레드스톤

T.B.H (고민중독) | 노트블럭 버전 | NoteBlock Cover [한국어 영어 중국어 가사 추가]

노트블럭전문가

2024-04-18

0

/files/thumbnails/218/767/003/262x150.crop.jpg?20240412130213

레드스톤

우리의 꿈 - 원피스 오프닝

노트블럭전문가

2024-04-12

0

/files/thumbnails/505/766/003/262x150.crop.jpg?20240411122306

레드스톤

기동전사 건담 수성의 마녀 | 노트블럭 커버 1

노트블럭전문가

2024-04-11

1