🌐 You are reading the 日本語 translation of this article
Available languages for this article:

Pop Up Modは、Modパック製作者が画面上にカスタムテキストを表示できるようにするModです。シンプルなコマンドやKubeJSスクリプトを使用して、ポップアップメッセージを作成できます。このModでは、画面上のさまざまな場所にテキストを配置でき、多言語にも対応しています。クエストの更新情報や特別な通知などをゲーム内で表示するのに最適です。

主な機能:

  • シンプルなコマンドで画面上にカスタム情報を表示。
  • 翻訳に対応しており、メッセージを異なる言語で表示可能。
  • テキストを配置する画面上の場所を複数から選択可能。
  • 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. Modをインストールした状態でゲームを起動します。
  2. ゲーム内で/popコマンドを使用して、新しいポップアップメッセージを作成します。
  3. または、KubeJSを使用してポップアップシステムにアクセスし、管理することもできます。

スクリーンショット:

Minecraft mod list screen showing details for the Pop mod
Pop modの詳細を表示しているMinecraftのModリスト画面
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 ダウンロードリンク

Minecraft 1.21.1, 1.21用

Forge版: サーバー1からダウンロードサーバー2からダウンロード

Minecraft 1.20.1, 1.20用

Forge版: サーバー1からダウンロードサーバー2からダウンロード

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