🌐 You are reading the हिन्दी translation of this article
Available languages for this article:

Pop Up Mod मोडपैक बनाने वालों को स्क्रीन पर कस्टम टेक्स्ट दिखाने की सुविधा देता है। आप पॉप-अप मैसेज बनाने के लिए सिंपल कमांड्स या KubeJS स्क्रिप्टिंग का इस्तेमाल कर सकते हैं। यह मोड आपको स्क्रीन पर अलग-अलग जगहों पर टेक्स्ट रखने की अनुमति देता है और कई भाषाओं को सपोर्ट करता है। यह आपके गेम में क्वेस्ट अपडेट या स्पेशल नोटिफिकेशन जैसी चीज़ें दिखाने के लिए एकदम परफेक्ट है।

Features:

  • एक सिंपल कमांड का उपयोग करके स्क्रीन पर कस्टम जानकारी दिखाएं।
  • ट्रांसलेशन सपोर्ट करता है, जिससे मैसेज अलग-अलग भाषाओं में दिखाए जा सकते हैं।
  • अपना टेक्स्ट रखने के लिए स्क्रीन की अलग-अलग लोकेशन्स चुनें।
  • एडवांस और स्क्रिप्टेड पॉप-अप के लिए KubeJS के साथ काम करता है।

Commands:

आप /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'); // 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()

How to Use:

  1. मोड इंस्टॉल करके गेम चलाएं।
  2. नया पॉप-अप मैसेज बनाने के लिए इन-गेम /pop कमांड का उपयोग करें।
  3. वैकल्पिक रूप से, आप पॉप-अप सिस्टम को मैनेज करने के लिए KubeJS का उपयोग कर सकते हैं।

Screenshots:

Minecraft mod list screen showing details for the Pop mod
Pop mod की डिटेल्स दिखाता हुआ Minecraft मोड लिस्ट स्क्रीन
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 Download Links

For Minecraft 1.21.1, 1.21

Forge version: Download from Server 1Download from Server 2

For Minecraft 1.20.1, 1.20

Forge version: Download from Server 1Download from Server 2

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