🌐 You are reading the 한국어 translation of this article
Available languages for this article:

Pop Up Mod는 모드팩 제작자가 화면에 커스텀 텍스트를 표시할 수 있게 해주는 모드입니다. 간단한 명령어 또는 KubeJS 스크립팅을 사용하여 팝업 메시지를 생성할 수 있습니다. 이 모드를 사용하면 화면의 다양한 위치에 텍스트를 배치할 수 있으며 다국어 번역도 지원합니다. 퀘스트 업데이트나 게임 내 특별 알림 등을 보여주기에 안성맞춤입니다.

주요 기능:

  • 간단한 명령어를 사용하여 화면에 커스텀 정보 표시.
  • 번역 지원으로 메시지를 다양한 언어로 표시 가능.
  • 텍스트를 배치할 다양한 화면 위치 선택 가능.
  • 더 고급스러운 스크립트 기반 팝업을 위한 KubeJS 연동 지원.

명령어:

/pop 명령어로 팝업 메시지를 만들 수 있습니다. 예시는 다음과 같습니다:

  • /pop create @s MIDDLE_LEFT "Hello World!"

더 고급 용도로는 KubeJS를 통해 모드를 제어할 수 있습니다. 아래는 예시 스크립트입니다:

// server.js
const PopBuilder = java.load('pro.mikey.mods.pop.PopBuilder');
const Placement = java.load('pro.mikey.mods.pop.data.Placement'); // 선택 사항
const pop = PopBuilder.create()
    .duration(5)
    .content({ text: "Hello World!" })
    .placement("middle_left") // 또는 .placement(Placement.MIDDLE_LEFT)

// 이제 빌드하여 PopData 객체를 얻거나 플레이어에게 직접 전송할 수 있습니다.
// 서버 측인 경우
pop.sendToPlayer(player);

// 클라이언트 측인 경우
pop.display()

사용 방법:

  1. 모드가 설치된 상태로 게임을 실행합니다.
  2. 게임 내에서 /pop 명령어를 사용하여 새로운 팝업 메시지를 생성합니다.
  3. 또는 KubeJS를 사용하여 팝업 시스템에 액세스하고 관리할 수 있습니다.

스크린샷:

Minecraft mod list screen showing details for the Pop mod
Pop 모드의 상세 정보를 보여주는 마인크래프트 모드 리스트 화면
Player typing a command to create a custom on screen display
커스텀 화면 표시를 만들기 위해 명령어를 입력하는 플레이어
Large red text displayed on screen using the Pop Up Mod
Pop Up Mod를 사용하여 화면에 표시된 커다란 빨간색 텍스트
Formatted text and greetings displayed over a beach landscape
해변 풍경 위에 표시된 서식 있는 텍스트와 인사말
Pop Up Mod displaying a quest completion notification on the screen
화면에 퀘스트 완료 알림을 표시하는 Pop Up Mod
A custom text message displayed over a scenic mountain landscape
멋진 산 풍경 위에 표시된 커스텀 텍스트 메시지
Pop Up Mod displaying a quest reminder on the screen
화면에 퀘스트 미리 알림을 표시하는 Pop Up Mod
Custom text notification appearing at the top of the screen
화면 상단에 나타나는 커스텀 텍스트 알림

Pop Up Mod 다운로드 링크

마인크래프트 1.21.1, 1.21용

Forge 버전: 서버 1에서 다운로드서버 2에서 다운로드

마인크래프트 1.20.1, 1.20용

Forge 버전: 서버 1에서 다운로드서버 2에서 다운로드

Click to rate this post!
[Total: 2 Average: 5]