mr.ekoo Posted May 10, 2013 Share Posted May 10, 2013 السلام عليكم انا سويت كود بواسطة GUIEditor المهم ظبطته وكل شيئ الحين ابي اسوي لو ضغطت F10 يظهر المربع سويته ومانفع الكود GUIEditor = { button = {}, window = {}, label = {} } function funcInput ( player, key, keyState ) GUIEditor.window[1] = guiCreateWindow(216, 173, 382, 255, "نافذة قوانين اللعبة", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 0.84) GUIEditor.button[1] = guiCreateButton(377, 21, 0, 16, "", false, GUIEditor.window[1]) GUIEditor.button[2] = guiCreateButton(9, 22, 363, 52, "قوانين السيرفر", false, GUIEditor.window[1]) GUIEditor.label[1] = guiCreateLabel(367, 80, 119, 81, "", false, GUIEditor.window[1]) GUIEditor.label[2] = guiCreateLabel(14, 85, 348, 149, "قوانين السيرفر:\n1-عدم السب والشتم\n2-عدم إستخدام الهاكات\n3-عدم التخريب\n4-عدم تقليد اسماء الادمن\n5-عدم طلب الآدمنية من صاحب السيرفر\n6-عدم طلب الترقية\n\n*القوانين قابلة للتحديث في اي وقت\n", false, GUIEditor.window[1]) guiLabelSetHorizontalAlign(GUIEditor.label[2], "right", false) GUIEditor.label[3] = guiCreateLabel(115, 2, 120, 15, "", false, GUIEditor.window[1]) end function bindTheKeys ( player, commandName ) bindKey ( player, "F10", "down", funcInput ) end addCommandHandler ( "bindme", bindTheKeys ) Link to comment
PaiN^ Posted May 10, 2013 Share Posted May 10, 2013 أغلاطك : - حاط أرجمنت اللاعب في البيند كي في ملف كلنت - مسوي البند لصناعة النوافذ مو لإضهارها و إخفائها Link to comment
فاّرس Posted May 10, 2013 Share Posted May 10, 2013 GUIEditor = { button = {}, window = {}, label = {} } GUIEditor.window[1] = guiCreateWindow(216, 173, 382, 255, "نافذة قوانين اللعبة", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 0.84) GUIEditor.button[1] = guiCreateButton(377, 21, 0, 16, "", false, GUIEditor.window[1]) GUIEditor.button[2] = guiCreateButton(9, 22, 363, 52, "قوانين السيرفر", false, GUIEditor.window[1]) GUIEditor.label[1] = guiCreateLabel(367, 80, 119, 81, "", false, GUIEditor.window[1]) GUIEditor.label[2] = guiCreateLabel(14, 85, 348, 149, "قوانين السيرفر:\n1-عدم السب والشتم\n2-عدم إستخدام الهاكات\n3-عدم التخريب\n4-عدم تقليد اسماء الادمن\n5-عدم طلب الآدمنية من صاحب السيرفر\n6-عدم طلب الترقية\n\n*القوانين قابلة للتحديث في اي وقت\n", false, GUIEditor.window[1]) guiLabelSetHorizontalAlign(GUIEditor.label[2], "right", false) GUIEditor.label[3] = guiCreateLabel(115, 2, 120, 15, "", false, GUIEditor.window[1]) function OpenWin() if guiGetVisible ( GUIEditor.window[1] ) then guiSetVisible ( GUIEditor.window[1], false ) showCursor(false) else guiSetVisible ( GUIEditor.window[1], true ) showCursor(true) end end bindKey("F10", "down", OpenWin) Link to comment
iPrestege Posted May 10, 2013 Share Posted May 10, 2013 GUIEditor = { button = {}, window = {}, label = {} } GUIEditor.window[1] = guiCreateWindow(216, 173, 382, 255, "نافذة قوانين اللعبة", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 0.84) GUIEditor.button[1] = guiCreateButton(377, 21, 0, 16, "", false, GUIEditor.window[1]) GUIEditor.button[2] = guiCreateButton(9, 22, 363, 52, "قوانين السيرفر", false, GUIEditor.window[1]) GUIEditor.label[1] = guiCreateLabel(367, 80, 119, 81, "", false, GUIEditor.window[1]) GUIEditor.label[2] = guiCreateLabel(14, 85, 348, 149, "قوانين السيرفر:\n1-عدم السب والشتم\n2-عدم إستخدام الهاكات\n3-عدم التخريب\n4-عدم تقليد اسماء الادمن\n5-عدم طلب الآدمنية من صاحب السيرفر\n6-عدم طلب الترقية\n\n*القوانين قابلة للتحديث في اي وقت\n", false, GUIEditor.window[1]) guiLabelSetHorizontalAlign(GUIEditor.label[2], "right", false) GUIEditor.label[3] = guiCreateLabel(115, 2, 120, 15, "", false, GUIEditor.window[1]) function OpenWin() if guiGetVisible ( GUIEditor.window[1] ) then guiSetVisible ( GUIEditor.window[1], false ) showCursor(false) else guiSetVisible ( GUIEditor.window[1], true ) showCursor(true) end end bindKey("F10", "down", OpenWin) ترا تقدر تختصر اكثر : bindKey("F10","down", function ( ) guiSetVisible ( GUIEditor.window[1] , not guiGetVisible ( GUIEditor.window[1] ) ) showCursor ( guiGetVisible ( GUIEditor.window[1] ) ) end ) Link to comment
PaiN^ Posted May 10, 2013 Share Posted May 10, 2013 .. لو صبرتوا شوي, يمكن كان راح يعدله و يتعلم Link to comment
iPrestege Posted May 10, 2013 Share Posted May 10, 2013 .. لو صبرتوا شوي, يمكن كان راح يعدله و يتعلم آنآ شفتهـ رد ووريتة آختصآر ( ( = بس ~ Link to comment
فاّرس Posted May 10, 2013 Share Posted May 10, 2013 .. لو صبرتوا شوي, يمكن كان راح يعدله و يتعلم function bindTheKeys ( player, commandName ) bindKey ( player, "F10", "down", funcInput ) end addCommandHandler ( "bindme", bindTheKeys ) شوف الخلط الجميل تتوقع بيعرف يعني؟ + ضايف فنكشن زياده مسآحه لآ اكثر, Link to comment
mr.ekoo Posted May 10, 2013 Author Share Posted May 10, 2013 (edited) GUIEditor = { button = {}, window = {}, label = {} } GUIEditor.window[1] = guiCreateWindow(216, 173, 382, 255, "نافذة قوانين اللعبة", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 0.84) GUIEditor.button[1] = guiCreateButton(377, 21, 0, 16, "", false, GUIEditor.window[1]) GUIEditor.button[2] = guiCreateButton(9, 22, 363, 52, "قوانين السيرفر", false, GUIEditor.window[1]) GUIEditor.label[1] = guiCreateLabel(367, 80, 119, 81, "", false, GUIEditor.window[1]) GUIEditor.label[2] = guiCreateLabel(14, 85, 348, 149, "قوانين السيرفر:\n1-عدم السب والشتم\n2-عدم إستخدام الهاكات\n3-عدم التخريب\n4-عدم تقليد اسماء الادمن\n5-عدم طلب الآدمنية من صاحب السيرفر\n6-عدم طلب الترقية\n\n*القوانين قابلة للتحديث في اي وقت\n", false, GUIEditor.window[1]) guiLabelSetHorizontalAlign(GUIEditor.label[2], "right", false) GUIEditor.label[3] = guiCreateLabel(115, 2, 120, 15, "", false, GUIEditor.window[1]) function OpenWin() if guiGetVisible ( GUIEditor.window[1] ) then guiSetVisible ( GUIEditor.window[1], false ) showCursor(false) else guiSetVisible ( GUIEditor.window[1], true ) showCursor(true) end end bindKey("F10", "down", OpenWin) اخوي فيه مشاكل اولا انا مايبيه يظهر او ماتدخل بس يوم تضغط اف 10 ويختفي باف 10 الحين مايختفي ------- خلاص اخوي الحين عدلته لحالي >> ^^ والحين يظهر في اف 9 فقط ويختفي بدل مايظهر بالبداية ومايختفي Edited May 10, 2013 by Guest Link to comment
PaiN^ Posted May 10, 2013 Share Posted May 10, 2013 وليش ما يعرف ؟؟ ! أنا وريته أغلاطه يمكن ينتبه و يصلحها عالعموم خلاص لا نفتح نقاش ماله نهاية, حطيت الكود و إنتهى Link to comment
кιηg-αвα∂у Posted May 10, 2013 Share Posted May 10, 2013 GUIEditor = { button = {}, window = {}, label = {} } GUIEditor.window[1] = guiCreateWindow(216, 173, 382, 255, "نافذة قوانين اللعبة", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 0.84) GUIEditor.button[1] = guiCreateButton(377, 21, 0, 16, "", false, GUIEditor.window[1]) GUIEditor.button[2] = guiCreateButton(9, 22, 363, 52, "قوانين السيرفر", false, GUIEditor.window[1]) GUIEditor.label[1] = guiCreateLabel(367, 80, 119, 81, "", false, GUIEditor.window[1]) GUIEditor.label[2] = guiCreateLabel(14, 85, 348, 149, "قوانين السيرفر:\n1-عدم السب والشتم\n2-عدم إستخدام الهاكات\n3-عدم التخريب\n4-عدم تقليد اسماء الادمن\n5-عدم طلب الآدمنية من صاحب السيرفر\n6-عدم طلب الترقية\n\n*القوانين قابلة للتحديث في اي وقت\n", false, GUIEditor.window[1]) guiLabelSetHorizontalAlign(GUIEditor.label[2], "right", false) GUIEditor.label[3] = guiCreateLabel(115, 2, 120, 15, "", false, GUIEditor.window[1]) function OpenWin() if guiGetVisible ( GUIEditor.window[1] ) then guiSetVisible ( GUIEditor.window[1], false ) showCursor(false) else guiSetVisible ( GUIEditor.window[1], true ) showCursor(true) end end bindKey("F10", "down", OpenWin) اخوي فيه مشاكل اولا انا مايبيه يظهر او ماتدخل بس يوم تضغط اف 10 ويختفي باف 10 الحين مايختفي ضيف guiSetVisible ( GUIEditor.window[1], false ) تحت كود الوحة Link to comment
PaiN^ Posted May 10, 2013 Share Posted May 10, 2013 ضيف guiSetVisible ( GUIEditor.window[1], false ) تحت كود الوحة + إستخدم كود برستيج أفضل Link to comment
mr.ekoo Posted May 10, 2013 Author Share Posted May 10, 2013 شكرا على المساعدة بس كيف اضيف زر إغلاق ؟ Link to comment
кιηg-αвα∂у Posted May 10, 2013 Share Posted May 10, 2013 + إستخدم كود برستيج أفضل هو الي بيستخدمه مو انا + اخوي فيه مشاكل اولا انا مايبيه يظهر او ماتدخل بس يوم تضغط اف 10 ويختفي باف 10 الحين مايختفي Link to comment
кιηg-αвα∂у Posted May 10, 2013 Share Posted May 10, 2013 أنا كنت أكلمه هو ذذ اسف, كنت افكرك تقصدني شكرا على المساعدةبس كيف اضيف زر إغلاق ؟ لآسم الزر button غير addEventHandler("onClientGUIClick", button, function() guiSetVisible(GUIEditor.window[1], false) showCursor( false ) end,false) Link to comment
mr.ekoo Posted May 10, 2013 Author Share Posted May 10, 2013 طيب اخوي كيف اخلي اسم للزر ؟ انا سويت كود بواسطة GUIEditor كود الزر GUIEditor.button[4] = guiCreateButton(9, 80, 32, 30, "×", false, GUIEditor.window[1]) Link to comment
فاّرس Posted May 10, 2013 Share Posted May 10, 2013 × هذا اسم الزر الداخلي, اسم الزر الخارجي يكون كذآ مثآل, eko = guiCreateButton(9, 80, 32, 30, "×", false, GUIEditor.window[1]) Link to comment
mr.ekoo Posted May 10, 2013 Author Share Posted May 10, 2013 اخوي هذا كود الزر GUIEditor.button[3] = guiCreateButton(149, 274, 83, 34, "اغلق", false, GUIEditor.window[1]) كيف اخلي له اسم !! جربت ابدل بدل GUIEditor.button[3] = guiCreateButton(149, 274, 83, 34, "اغلق", false, GUIEditor.window[1]) اسويه ekoo = guiCreateButton(149, 274, 83, 34, "اغلق", false, GUIEditor.window[1]) وكود الإغلاق addEventHandler("onClientGUIClick", ekoo, function() guiSetVisible(GUIEditor.window[1], false) showCursor( false ) end,false) مانفع رجعت اسم الزر لنفس ماكان وغيرت الكود خليته addEventHandler("onClientGUIClick", GUIEditor.button[3], function() guiSetVisible(GUIEditor.window[1], false) showCursor( false ) end,false) و addEventHandler("onClientGUIClick", button[3], function() guiSetVisible(GUIEditor.window[1], false) showCursor( false ) end,false) ومانفع مايشتغل وش الحل ؟ Link to comment
فاّرس Posted May 10, 2013 Share Posted May 10, 2013 انت وش تبي اسآسا؟ الي فهمته انك تبي تغير اسمائهم, هذا مثآل وانت غيرها حسب الي تبي, window = guiCreateWindow(216, 173, 382, 255, "نافذة قوانين اللعبة", false) guiWindowSetSizable(window, false) guiSetVisible(window, false) guiSetAlpha(window, 0.84) Button1 = guiCreateButton(377, 21, 0, 16, "", false, window) Button2 = guiCreateButton(9, 22, 363, 52, "قوانين السيرفر", false, window) Label1 = guiCreateLabel(367, 80, 119, 81, "", false, window) Label1 = guiCreateLabel(14, 85, 348, 149, "قوانين السيرفر:\n1-عدم السب والشتم\n2-عدم إستخدام الهاكات\n3-عدم التخريب\n4-عدم تقليد اسماء الادمن\n5-عدم طلب الآدمنية من صاحب السيرفر\n6-عدم طلب الترقية\n\n*القوانين قابلة للتحديث في اي وقت\n", false, window) guiLabelSetHorizontalAlign(Label2, "right", false) GUIEditor.label[3] = guiCreateLabel(115, 2, 120, 15, "", false, window) function OpenWin() if guiGetVisible ( window ) then guiSetVisible ( window, false ) showCursor(false) else guiSetVisible ( window, true ) showCursor(true) end end bindKey("F10", "down", OpenWin) Link to comment
mr.ekoo Posted May 10, 2013 Author Share Posted May 10, 2013 الى ابغيه لما اضغط زر الإغلاق يسكر النافذة !! الكود حقي بعد تعديلي GUIEditor = { button = {}, window = {}, label = {} } function OpenWin() if guiGetVisible ( GUIEditor.window[1] ) then guiSetVisible ( GUIEditor.window[1], false ) showCursor(false) else GUIEditor.window[1] = guiCreateWindow(216, 173, 382, 318, "نافذة قوانين اللعبة", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 0.84) GUIEditor.button[1] = guiCreateButton(377, 21, 0, 16, "", false, GUIEditor.window[1]) GUIEditor.button[2] = guiCreateButton(9, 22, 363, 52, "قوانين السيرفر", false, GUIEditor.window[1]) GUIEditor.label[1] = guiCreateLabel(367, 80, 119, 81, "", false, GUIEditor.window[1]) GUIEditor.label[2] = guiCreateLabel(14, 85, 348, 149, "قوانين السيرفر:\n1-عدم السب والشتم\n2-عدم إستخدام الهاكات\n3-عدم التخريب\n4-عدم تقليد اسماء الادمن\n5-عدم طلب الآدمنية من صاحب السيرفر\n6-عدم طلب الترقية\n\n*القوانين قابلة للتحديث في اي وقت\n", false, GUIEditor.window[1]) guiLabelSetHorizontalAlign(GUIEditor.label[2], "right", false) GUIEditor.label[3] = guiCreateLabel(115, 2, 120, 15, "", false, GUIEditor.window[1]) buttonclose = guiCreateButton(149, 274, 83, 34, "اغلق", false, GUIEditor.window[1]) end end bindKey("F9", "down", OpenWin) addEventHandler("onClientGUIClick", buttonclose, function() guiSetVisible(GUIEditor.window[1], false) showCursor( false ) end,false) Link to comment
PaiN^ Posted May 10, 2013 Share Posted May 10, 2013 GUIEditor = { button = {}, window = {}, label = {} } addEventHandler ( 'onClientResourceStart', resourceRoot, function ( ) GUIEditor.window[1] = guiCreateWindow(216, 173, 382, 318, "نافذة قوانين اللعبة", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 0.84) guiSetVisible(GUIEditor.window[1], false) GUIEditor.button[1] = guiCreateButton(377, 21, 0, 16, "", false, GUIEditor.window[1]) GUIEditor.button[2] = guiCreateButton(9, 22, 363, 52, "قوانين السيرفر", false, GUIEditor.window[1]) GUIEditor.label[1] = guiCreateLabel(367, 80, 119, 81, "", false, GUIEditor.window[1]) GUIEditor.label[2] = guiCreateLabel(14, 85, 348, 149, "قوانين السيرفر:\n1-عدم السب والشتم\n2-عدم إستخدام الهاكات\n3-عدم التخريب\n4-عدم تقليد اسماء الادمن\n5-عدم طلب الآدمنية من صاحب السيرفر\n6-عدم طلب الترقية\n\n*القوانين قابلة للتحديث في اي وقت\n", false, GUIEditor.window[1]) guiLabelSetHorizontalAlign(GUIEditor.label[2], "right", false) GUIEditor.label[3] = guiCreateLabel(115, 2, 120, 15, "", false, GUIEditor.window[1]) buttonclose = guiCreateButton(149, 274, 83, 34, "اغلق", false, GUIEditor.window[1]) end ) function open guiSetVisible ( GUIEditor.window[1], not guiGetVisible ( GUIEditor.window[1] ) ) showCursor ( guiGetVisible ( GUIEditor.window[1] ) ) end bindKey ( "F9", "down", open ) addEventHandler ( "onClientGUIClick", buttonclose, function ( ) guiSetVisible ( GUIEditor.window[1], false ) showCursor( false ) end, false ) Link to comment
mr.ekoo Posted May 10, 2013 Author Share Posted May 10, 2013 الحين المود مايشتغل اختفى !! Link to comment
кιηg-αвα∂у Posted May 10, 2013 Share Posted May 10, 2013 pain @ ناقص عندك قوسين صاحب الموضوع جرب GUIEditor = { button = {}, window = {}, label = {} } addEventHandler ( 'onClientResourceStart', resourceRoot, function ( ) GUIEditor.window[1] = guiCreateWindow(216, 173, 382, 318, "نافذة قوانين اللعبة", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 0.84) guiSetVisible(GUIEditor.window[1], false) GUIEditor.button[1] = guiCreateButton(377, 21, 0, 16, "", false, GUIEditor.window[1]) GUIEditor.button[2] = guiCreateButton(9, 22, 363, 52, "قوانين السيرفر", false, GUIEditor.window[1]) GUIEditor.label[1] = guiCreateLabel(367, 80, 119, 81, "", false, GUIEditor.window[1]) GUIEditor.label[2] = guiCreateLabel(14, 85, 348, 149, "قوانين السيرفر:\n1-عدم السب والشتم\n2-عدم إستخدام الهاكات\n3-عدم التخريب\n4-عدم تقليد اسماء الادمن\n5-عدم طلب الآدمنية من صاحب السيرفر\n6-عدم طلب الترقية\n\n*القوانين قابلة للتحديث في اي وقت\n", false, GUIEditor.window[1]) guiLabelSetHorizontalAlign(GUIEditor.label[2], "right", false) GUIEditor.label[3] = guiCreateLabel(115, 2, 120, 15, "", false, GUIEditor.window[1]) buttonclose = guiCreateButton(149, 274, 83, 34, "اغلق", false, GUIEditor.window[1]) end ) open = function() guiSetVisible ( GUIEditor.window[1], not guiGetVisible ( GUIEditor.window[1] ) ) showCursor ( guiGetVisible ( GUIEditor.window[1] ) ) end bindKey ( "F9", "down", open ) addEventHandler ( "onClientGUIClick", buttonclose, function ( ) guiSetVisible ( GUIEditor.window[1], false ) showCursor( false ) end, false ) Link to comment
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now