🌐 You are reading the Filipino translation of this article
Available languages for this article:

Ang Pop Up Mod ay nagbibigay-daan sa mga modpack maker na magpakita ng custom text sa screen. Maaari kang gumamit ng mga simpleng command o KubeJS scripting para gumawa ng mga pop-up message. Pinapayagan ka ng mod na ito na maglagay ng text sa iba’t ibang parte ng screen at sumusuporta sa maraming wika. Swak na swak ito para sa pagpapakita ng mga quest update o special notifications sa iyong laro.

Features:

  • Magpakita ng custom information sa screen gamit ang simpleng command.
  • Suportado ang mga translation, kaya pwedeng ipakita ang mga message sa iba’t ibang wika.
  • Pumili mula sa iba’t ibang screen locations kung saan ilalagay ang iyong text.
  • Gumagana sa KubeJS para sa mas advanced at scripted na mga pop-up.

Commands:

Maaari kang gumawa ng pop-up message gamit ang /pop command. Narito ang isang halimbawa:

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

Para sa mas advanced na paggamit, ang mod ay maaaring kontrolin gamit ang KubeJS. Narito ang isang halimbawa ng script:

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

// You can now either build it and get a PopData object or directly send it to the player
// If you're on the server
pop.sendToPlayer(player);

// If you're on the client
pop.display()

Paano Gamitin:

  1. I-run ang laro nang naka-install ang mod.
  2. Gamitin ang /pop command in-game para gumawa ng bagong pop-up message.
  3. Bilang alternatibo, maaari mong gamitin ang KubeJS para ma-access at ma-manage ang pop-up system.

Screenshots:

Minecraft mod list screen showing details for the Pop mod
Minecraft mod list screen na nagpapakita ng detalye para sa Pop mod
Player typing a command to create a custom on screen display
Player na nagta-type ng command para gumawa ng custom on-screen display
Large red text displayed on screen using the Pop Up Mod
Malaking pulang text na nakadisplay sa screen gamit ang Pop Up Mod
Formatted text and greetings displayed over a beach landscape
Formatted text at mga pagbati na nakadisplay sa ibabaw ng beach landscape
Pop Up Mod displaying a quest completion notification on the screen
Pop Up Mod na nagpapakita ng quest completion notification sa screen
A custom text message displayed over a scenic mountain landscape
Isang custom text message na nakadisplay sa ibabaw ng magandang mountain landscape
Pop Up Mod displaying a quest reminder on the screen
Pop Up Mod na nagpapakita ng quest reminder sa screen
Custom text notification appearing at the top of the screen
Custom text notification na lumalabas sa itaas ng screen

Pop Up Mod Download Links

Para sa Minecraft 1.21.1, 1.21

Forge version: Download mula sa Server 1Download mula sa Server 2

Para sa Minecraft 1.20.1, 1.20

Forge version: Download mula sa Server 1Download mula sa Server 2

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