🌐 You are reading the العربية translation of this article
Available languages for this article:

يسمح Pop Up Mod لصناع الـ Modpacks بعرض نصوص مخصصة على الشاشة. يمكنك استخدام أوامر بسيطة أو سكربتات KubeJS لإنشاء رسائل منبثقة (Pop-up). يتيح لك هذا المود وضع النص في أماكن مختلفة على الشاشة ويدعم لغات متعددة. إنه مثالي لعرض أشياء مثل تحديثات المهام (Quests) أو التنبيهات الخاصة في لعبتك.

المميزات:

  • عرض معلومات مخصصة على الشاشة باستخدام أمر بسيط.
  • يدعم الترجمة، بحيث يمكن عرض الرسائل بلغات مختلفة.
  • اختر من بين مواقع مختلفة على الشاشة لوضع النص الخاص بك.
  • يعمل مع 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'); // 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()

كيفية الاستخدام:

  1. شغل اللعبة مع تثبيت المود.
  2. استخدم أمر /pop داخل اللعبة لإنشاء رسالة منبثقة جديدة.
  3. بدلاً من ذلك، يمكنك استخدام KubeJS للوصول إلى نظام الـ pop-up وإدارته.

صور الشاشة:

Minecraft mod list screen showing details for the Pop mod
شاشة قائمة مودات ماين كرافت تظهر تفاصيل Pop 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

لماين كرافت 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]