Jump to content

أحتاج مساهمات مبرمج


Recommended Posts

 ^_^السلام عليكم ورحمة الله

كيف حالكم :) ان شاء الله بخير....على العموم محتاج مبرمج يصنع لي لوحة أف 9 الي يضيفو عليه مودات مثل الي بالصورة

p_599iufh51.png

الي يبي يساعدني برفع له المودات الي يحطها في اللوحة :) وياريت تساعدوني أسف انا لسة مبتدء وحاولت كثييير

بس دايما تكون مخربة وكذا :( 

مستني ردكمـــ

Link to comment

سويت لوحة تجريبية هذا شكلها

p_600rx3c11.png

وعايز اضيف مود حفظ المكان, فيها ونسخت اكواد من  لوحة تانية


GUIEditor = {
    button = {}
}

addEventHandler("onClientResourceStart", resourceRoot,
    function()
local screenW, screenH = guiGetScreenSize()
        F9 = guiCreateWindow((screenW - 358) / 2, (screenH - 395) / 2, 358, 395, "F9", false)
        guiWindowSetSizable(F9, false)
        guiSetAlpha(F9, 1.00)

        Save-Place = guiCreateButton(60, 59, 241, 166, "لوحة حفظ المكان", false, F9)
        guiSetProperty(Save-Place, "NormalTextColour", "FFAAAAAA")
        Close = guiCreateButton(285, 350, 41, 27, "X", false, F9)
        guiSetProperty(Close, "NormalTextColour", "FFAAAAAA")    
		guiSetVisible(F9,false)
    end
)

bindKey("F9","down",
function ()
    guiSetVisible(F9l,not guiGetVisible(F9))
    showCursor(guiGetVisible(F9))
end)   

addEventHandler ("onClientGUIClick", root,
        function()
        if (source == Save-Place) then
         guiSetVisible(F9, false)
         showCursor(false)
         guiSetInputEnabled(false)
        end
    end
)
--

addEventHandler("onClientGUIClick",root, 
function () 
if source == Save-Place then 
if ( guiGetVisible(F9) == false ) then
            guiSetVisible(F9,false)
			showCursor(false)
			guiSetInputEnabled(false)
	end
	guiSetVisible(F9,not guiGetVisible(F9))
	showCursor(guiGetVisible(F9))
	guiSetInputEnabled(guiGetVisible(F9))
end 
end 
) 

حطيت ملف مود حفظ المكان وسويت ميتا بس ابي اشوف لو في اخطاء

هذي تجربة فيها اخطاء ممكن حد يصلحهم

https://up.top4top.net/downloadf-6007jywh1-zip.html

Link to comment

جرب :

addEventHandler("onClientResourceStart", resourceRoot,
    function()
local screenW, screenH = guiGetScreenSize()
        wPanel = guiCreateWindow((screenW - 358) / 2, (screenH - 395) / 2, 358, 395, "F9", false)
        guiWindowSetSizable(wPanel, false)
        guiSetAlpha(wPanel, 1.00)

        Warp = guiCreateButton(60, 59, 241, 166, "لوحة حفظ المكان", false, wPanel)
        guiSetProperty(Warp, "NormalTextColour", "FFAAAAAA")
        Close = guiCreateButton(285, 350, 41, 27, "X", false, wPanel)
        guiSetProperty(Close, "NormalTextColour", "FFAAAAAA")    
        guiSetVisible(wPanel,false)
    end
)

bindKey("F9","down",
function ()
    guiSetVisible(wPanel,not guiGetVisible(wPanel))
    showCursor(guiGetVisible(wPanel))
end)   

addEventHandler ("onClientGUIClick", root, function (    )
        if (source == Warp) then
         guiSetVisible(wPanel, false)
         showCursor(false)
         guiSetInputEnabled(false)
        end
    end
)

 

Link to comment
3 hours ago, mr.sony said:

اخي والله سويتها بس صار ما يفتح 

https://up.top4top.net/downloadf-6019dfco1-zip.html

اللوحه صارت ما تفتح؟

addEventHandler("onClientResourceStart", resourceRoot,
    function()
local screenW, screenH = guiGetScreenSize()
        wPanel = guiCreateWindow((screenW - 358) / 2, (screenH - 395) / 2, 358, 395, "F9", false)
        guiWindowSetSizable(wPanel, false)
        guiSetAlpha(wPanel, 1.00)

        Warp = guiCreateButton(60, 59, 241, 166, "لوحة حفظ المكان", false, wPanel)
        guiSetProperty(Warp, "NormalTextColour", "FFAAAAAA")
        Close = guiCreateButton(285, 350, 41, 27, "X", false, wPanel)
        guiSetProperty(Close, "NormalTextColour", "FFAAAAAA")    
        guiSetVisible(wPanel,false)
    end
)

bindKey("F9","down",
function ()
    if guiGetVisible ( wPanel ) then
      guiSetVisible( wPanel, false )
      showCursor( false )
      guiSetInputEnabled( false )
    else
      guiSetVisible( wPanel, true )
      showCursor( true )
      guiSetInputEnabled( true )
    end
end
)

addEventHandler ("onClientGUIClick", root, function (    )
        if (source == Warp) then
         guiSetVisible(wPanel, false)
         showCursor(false)
         guiSetInputEnabled(false)
        end
    end
)

 

Edited by A7MEDENO
Link to comment

الاحسن انك تسوي كود بنفسك و كل مبتدى بكون عليه شي صعب بس بتتعلم 

نفسي انا مبتدى و جالس اتعلم و هنا يساعدوني اذا احتجت  شي 

اطلب الاكواد و شوف مثال لها و طبق اذا ما اشتغل خلي اكوادك هنا و احنا نصلح لك 

Link to comment
On 23/08/2017 at 09:21, mr.sony said:

سويت لوحة تجريبية هذا شكلها

p_600rx3c11.png

وعايز اضيف مود حفظ المكان, فيها ونسخت اكواد من  لوحة تانية


GUIEditor = {
    button = {}
}

addEventHandler("onClientResourceStart", resourceRoot,
    function()
local screenW, screenH = guiGetScreenSize()
        F9 = guiCreateWindow((screenW - 358) / 2, (screenH - 395) / 2, 358, 395, "F9", false)
        guiWindowSetSizable(F9, false)
        guiSetAlpha(F9, 1.00)

        Save-Place = guiCreateButton(60, 59, 241, 166, "لوحة حفظ المكان", false, F9)
        guiSetProperty(Save-Place, "NormalTextColour", "FFAAAAAA")
        Close = guiCreateButton(285, 350, 41, 27, "X", false, F9)
        guiSetProperty(Close, "NormalTextColour", "FFAAAAAA")    
		guiSetVisible(F9,false)
    end
)

bindKey("F9","down",
function ()
    guiSetVisible(F9l,not guiGetVisible(F9))
    showCursor(guiGetVisible(F9))
end)   

addEventHandler ("onClientGUIClick", root,
        function()
        if (source == Save-Place) then
         guiSetVisible(F9, false)
         showCursor(false)
         guiSetInputEnabled(false)
        end
    end
)
--

addEventHandler("onClientGUIClick",root, 
function () 
if source == Save-Place then 
if ( guiGetVisible(F9) == false ) then
            guiSetVisible(F9,false)
			showCursor(false)
			guiSetInputEnabled(false)
	end
	guiSetVisible(F9,not guiGetVisible(F9))
	showCursor(guiGetVisible(F9))
	guiSetInputEnabled(guiGetVisible(F9))
end 
end 
) 

حطيت ملف مود حفظ المكان وسويت ميتا بس ابي اشوف لو في اخطاء

هذي تجربة فيها اخطاء ممكن حد يصلحهم

https://up.top4top.net/downloadf-6007jywh1-zip.html

سوي تحت كلمة guiSetAlpha 

سوي : guiSerVisible( اسم لوحتك , false ) 

بعدين راح تصير تقدر تغلق لوحة مثل ما سويت ف أكواد

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...