Jump to content

مساعدة في لوحة فري روم


Recommended Posts

 

مرحبا ...!

 

يعيال انا عندي مشكلة بالفري روم 

انجنيت منه 

الحين انا كيف بخلي ازرار الفري روم صورة + يكون الكلام فيها 

------------------------

اكواد اللوحة 

-----------------------

wndMain = {
    'wnd',
    text = 'FR GUI',
    x = 6,
    y = 1,
    width = 290,
    controls = {
                    {"lbl"; id = "hero", text = "✦  تيربو العرب ✦"},     
                    {'br'},
                    {'br'},
                                                        {"lbl"; id = "5", text = "اسمك :"},     
                                                            {"lbl"; id = "NAME", text = '' .. getPlayerName(g_Me) .. ''},    
                                                                {'br'},    
                                                        {"lbl"; id = "4", text = "بنقكــ :"},     
{"lbl"; id = "PING", text = '' .. getPlayerPing(g_Me) .. ' '},
        {'br'},
        {'btn', id='✦ انتحار ✦', onclick=killLocalPlayer, width = 121},
        {'btn', id='✦  شخصيات  ✦', window=wndSkin, width = 121},
        {'btn', id='✦  حركات  ✦', window=wndAnim, width = 121},
        {'btn', id='✦  الادوات  ✦', window=wndWeapon, width = 121},
                {'btn', id='✦  انتقال  ✦', window=wndWarp, width = 121},
        {'btn', id='✦  ملابس  ✦', window=wndClothes, width = 121},
        {'btn', id='✦  الحاله  ✦', window=wndStats, width = 121},
                {'btn', id='playergrav', text='✦ الجاذبيه ✦', window=wndGravity, width = 121},
                        {"chk"; id = "✦ قفل الانتقال ✦", onclick = nowarp, width = 121},
                                {'chk', id='   falloff   ', text='✦ عدم السقوط من الدراجة ✦', onclick=toggleFallOffBike, width = 121},
        {'chk', id='✦  نفاثه  ✦', onclick=toggleJetPack, width = 121},
                {"chk"; id = "✦  إخفاء الشات  ✦", onclick = chat, width = 121},                               
        {'br'},    
        {'btn', id='createvehicle', window=wndCreateVehicle, text='✦ مواتر الـروم ✦', width = 121},        
                    {'btn', id='setpos', text='✦  الخريطه  ✦', window=wndSetPos, width = 121},
    {'btn', id='setinterior', text='✦ اماكن  ✦', window=wndSetInterior, width = 121},
                                        {"btn"; id = "✦ الوقت  ✦", window = wndTime, width = 121},
                {"btn"; id = "✦  معلومات الاعـب  ✦", window = wndinfo, width = 121},
                                {'btn', id='✦ الهاك ✦', window=wndHack, width = 121},
        {'br'},    
                {'br'},
        {'btn', id='✦  اصلاح  ✦', onclick=repairVehicle, width = 125},
        {'btn', id='✦ انقلاب  ✦', onclick=flipVehicle, width = 125},
        {'btn', id='✦ تعديلات ✦', window=wndUpgrades, width = 125},
        {'btn', id='✦ اللوان ✦', onclick=openColorPicker, width = 125},
                                {"btn"; id = "✦ حفظ الماكـن ✦", window = wndBookmarks, width = 125}, 
                        {"btn"; id = "✦ قوانين ✦", window = wndkwanan, width = 125},    
                {'btn', id='✦ أصــحـاب السـيــرفــر  ✦', window=wndOwner ,  width = 252},
                {'br'},
                                {'br'},    
                                                                {'br'},    
    },
    oncreate = mainWndShow,
    onclose = mainWndClose
}

 

ذا مثلا زر

{'btn', id='✦ انتحار ✦', onclick=killLocalPlayer, width = 121},

كيف بخليه صورة و كلمة انتحار م تروح منه 

 

Link to comment
function guiCreateButton(x3, y3, width3, height3, titleBarText3, relative3 , Wnd)
	local mainBackground3 = guiCreateStaticImage ( x3, y3, width3, height3, "YourPhoto.png", relative3 , Wnd) -- اسم الصورة
    local mainBackgroundLabel = guiCreateLabel(0, 0, 0, 0, titleBarText2, false, mainBackground2)
    guiSetEnabled ( mainBackgroundLabel3, false )
	return mainBackground3
end

ضيف هذا الكود في الفري روم " كلينت " ولا تنسى تضيف الصورة بالمود والميتا . :)

@MR.AsaD

  • Thanks 1
Link to comment
41 minutes ago, DABL said:

أعدل فري روم .

عارفين وربنا انت الفري روم تعديل معلومة كتير ذكية تصدق ماكنت اعرف واو ابهرتني مرةة والله ??? 

  • Sad 1
Link to comment

 

On 01/05/2019 at 17:21, MR.AsaD said:

ذا مثلا زر

{'btn', id='✦ انتحار ✦', onclick=killLocalPlayer, width = 121},

كيف بخليه صورة و كلمة انتحار م تروح منه 

 

function guiCreateButton(x3, y3, width3, height3, titleBarText3, relative3 , Wnd)
    local mainBackground3 = guiCreateStaticImage ( x3, y3, width3, height3, "pic.png", relative3 , Wnd)
    local mainBackgroundLabel3 = guiCreateLabel ( -0.2, 0.1, 700, 100, "               "..titleBarText3, true, mainBackground3 )
    guiSetFont ( mainBackgroundLabel3, guiCreateFont ( "Font1.ttf", 10 ) ) --  الخطوط .
    guiSetEnabled ( mainBackgroundLabel3, false )
    return mainBackground3
end

 

Edited by Sk2rEz
  • Thanks 1
Link to comment
1 hour ago, #Bad_Boy, said:

function guiCreateButton(x3, y3, width3, height3, titleBarText3, relative3 , Wnd)
	local mainBackground3 = guiCreateStaticImage ( x3, y3, width3, height3, "YourPhoto.png", relative3 , Wnd) -- اسم الصورة
    local mainBackgroundLabel = guiCreateLabel(0, 0, 0, 0, titleBarText2, false, mainBackground2)
    guiSetEnabled ( mainBackgroundLabel3, false )
	return mainBackground3
end

ضيف هذا الكود في الفري روم " كلينت " ولا تنسى تضيف الصورة بالمود والميتا . :)

@MR.AsaD

جزاك الله الف خير انت والأخ

Kareem Amer 

اول شخصين ساعدوني ?

  • Like 1
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...