Jump to content

ظهور نص على الشاشة


Recommended Posts

السلام عليكم

كيف الحال ان شاء الله بخير

المهم

اخواني انا ابي كود ظهور نص على الشاشه

يعني كل بعد 5 ثوان يطلع كلام ع الشاشه

مو في الشات

ابيها ع الشاشه

انا ابيها للمقدمه

يعني لما افتح اسيرفر تطلع لي كلام ويختفي يطلع كلام وكذا

Link to comment

اشكركم جميعا بس

انا اللي ابيه بداية السيرفر

يعني يشتغل المود عند تحميل المودات

زي بداية سيرفر حرب العصابات

بس انا ما ابيها صور ابيها نص يطلع في نص الشاشة

Link to comment

يا الحبيب عندك ثلاث انواع عشان تكتب في الشاشه

guiCreateLabel 
textCreateTextItem 
dxDrawText 

و اختار الي يعجبكك

و الاسهل لك كمبتدئ

الاولى

اما اذا تبي حق الي يحمل

و يجيهم

يتم الان التحميل

خذ الثاني

Link to comment
-- Client Side 
  
addEventHandler("onClientResourceStart",resourceRoot, 
    function () 
        triggerServerEvent("removeText",localPlayer) 
    end 
) 
  
-- Server Side 
  
dis = textCreateDisplay() 
text = textCreateTextItem("Downloading . . .",0.2,0.4,"medium",255,0,0,255,3) 
textDisplayAddText(dis,text) 
  
addEventHandler("onResourceStart",resourceRoot, 
    function () 
        for i,p in ipairs(getElementsByType("player")) do 
            textDisplayAddObserver(dis,p) 
        end 
    end 
) 
  
addEventHandler("onPlayerJoin",root, 
    function () 
        textDisplayAddObserver(dis,source) 
    end 
) 
  
addEvent("removeText",true) 
addEventHandler("removeText",root, 
    function () 
        textDisplayRemoveObserver(dis,source) 
    end 
) 
  

Link to comment
-- Client Side 
  
addEventHandler("onClientResourceStart",resourceRoot, 
    function () 
        triggerServerEvent("removeText",localPlayer) 
    end 
) 
  
-- Server Side 
  
dis = textCreateDisplay() 
text = textCreateTextItem("Downloading . . .",0.2,0.4,"medium",255,0,0,255,3) 
textDisplayAddText(dis,text) 
  
addEventHandler("onResourceStart",resourceRoot, 
    function () 
        for i,p in ipairs(getElementsByType("player")) do 
            textDisplayAddObserver(dis,p) 
        end 
    end 
) 
  
addEventHandler("onPlayerJoin",root, 
    function () 
        textDisplayAddObserver(dis,source) 
    end 
) 
  
addEvent("removeText",true) 
addEventHandler("removeText",root, 
    function () 
        textDisplayRemoveObserver(dis,source) 
    end 
) 
  

مشكور اخوي طلال تمت الإفادة

Link to comment
-- Client Side 
  
addEventHandler("onClientResourceStart",resourceRoot, 
    function () 
        triggerServerEvent("removeText",localPlayer) 
    end 
) 
  
-- Server Side 
  
dis = textCreateDisplay() 
text = textCreateTextItem("Downloading . . .",0.2,0.4,"medium",255,0,0,255,3) 
textDisplayAddText(dis,text) 
  
addEventHandler("onResourceStart",resourceRoot, 
    function () 
        for i,p in ipairs(getElementsByType("player")) do 
            textDisplayAddObserver(dis,p) 
        end 
    end 
) 
  
addEventHandler("onPlayerJoin",root, 
    function () 
        textDisplayAddObserver(dis,source) 
    end 
) 
  
addEvent("removeText",true) 
addEventHandler("removeText",root, 
    function () 
        textDisplayRemoveObserver(dis,source) 
    end 
) 
  

مشكور اخوي طلال تمت الإفادة

العفوو

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...