#STZ Posted May 18, 2016 Share Posted May 18, 2016 السلام عليكم و رحمة الله وبركاته كيف حالكم يا شباب الحين حبيبت اسوي سكربت زر تصليح السيارة لاني مبتدا طبعا لاكن اول ما ادخل اللوحة تطلع بوجهي مع اني ضفت الكود اللي خليها متطلع اطلب منكم تصحيح الكود -- client GUIEditor = { label = {}, window = {} } addEventHandler("onClientResourceStart", resourceRoot, function() local screenW, screenH = guiGetScreenSize() GUIEditor.window[1] = guiCreateWindow((screenW - 364) / 2, (screenH - 219) / 2, 364, 219, "Created By MR.NaiF-MTA", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 1.00) guiSetProperty(GUIEditor.window[1], "CaptionColour", "FFFC00FF") FIX = guiCreateButton(64, 55, 251, 65, "اصلاح السيارة", false, GUIEditor.window[1]) guiSetProperty(FIX, "NormalTextColour", "FF5FFE00") Close = guiCreateButton(10, 177, 72, 28, "#Close", false, GUIEditor.window[1]) guiSetProperty(Close, "NormalTextColour", "FFFE0000") GUIEditor.label[1] = guiCreateLabel(116, 140, 209, 15, "نتمني لكم قضاء وقتا سعيدا في السيرفر", false, GUIEditor.window[1]) guiLabelSetColor(GUIEditor.label[1], 9, 59, 245) end ) -- اكواد اللوحة فوق guiSetVisible ( GUIEditor.window[1], false ) function OpenWin() if guiGetVisible ( GUIEditor.window[1] ) then guiSetVisible ( GUIEditor.window[1], false ) showCursor(false) guiSetInputEnabled(false) else guiSetVisible ( GUIEditor.window[1], true ) showCursor(true) guiSetInputEnabled(true) end end bindKey("f9", "down", OpenWin) -- كود الزر addEventHandler("onClientGUIClick",root, function () if source == Close then if(guiGetVisible(GUIEditor.window[1]) == false)then end guiSetVisible(GUIEditor.window[1],false) showCursor(false) guiSetInputEnabled(false) end end ) -- كود زر اغلاق guiSetVisible ( GUIEditor.window[1], false ) -- كود ما تطلع بوجهك addEventHandler("onClientGUIClick",resourceRoot,function () if ( source == FIX ) then triggerServerEvent ( "FixCar",localPlayer) end end) -- فنكشنات -- server addEvent( "FixCar", true ) addEventHandler( "FixCar",root,function () local Veh = getPedOccupiedVehicle ( source ) if Veh then fixVehicle(Veh) outputChatBox(' تم اصلاح سيارتك بنجاح ', source ,0,255,0,true ) else outputChatBox(' لايوجد سيارة لاصلاحها ', source ,0,255,0,true ) end end) Link to comment
Adham Posted May 18, 2016 Share Posted May 18, 2016 GUIEditor = { label = {}, window = {} } addEventHandler("onClientResourceStart", resourceRoot, function() local screenW, screenH = guiGetScreenSize() GUIEditor.window[1] = guiCreateWindow((screenW - 364) / 2, (screenH - 219) / 2, 364, 219, "Created By MR.NaiF-MTA", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 1.00) guiSetProperty(GUIEditor.window[1], "CaptionColour", "FFFC00FF") guiSetVisible ( GUIEditor.window[1], false ) FIX = guiCreateButton(64, 55, 251, 65, "اصلاح السيارة", false, GUIEditor.window[1]) guiSetProperty(FIX, "NormalTextColour", "FF5FFE00") Close = guiCreateButton(10, 177, 72, 28, "#Close", false, GUIEditor.window[1]) guiSetProperty(Close, "NormalTextColour", "FFFE0000") GUIEditor.label[1] = guiCreateLabel(116, 140, 209, 15, "نتمني لكم قضاء وقتا سعيدا في السيرفر", false, GUIEditor.window[1]) guiLabelSetColor(GUIEditor.label[1], 9, 59, 245) end ) bindKey ( "F9", "down", function ( ) guiSetVisible ( GUIEditor.window[1], not guiGetVisible ( GUIEditor.window[1] ) ) showCursor ( guiGetVisible ( GUIEditor.window[1] ) ) end ) addEventHandler("onClientGUIClick",root, function () if ( source == Close ) then guiSetVisible(GUIEditor.window[1],false) showCursor(false) end end ) addEventHandler("onClientGUIClick",resourceRoot,function () if ( source == FIX ) then triggerServerEvent ( "FixCar",localPlayer) end end) addEvent( "FixCar", true ) addEventHandler( "FixCar",root,function () local Veh = getPedOccupiedVehicle ( source ) if Veh then fixVehicle(Veh) outputChatBox(' تم اصلاح سيارتك بنجاح ', source ,0,255,0,true ) else outputChatBox(' لايوجد سيارة لاصلاحها ', source ,0,255,0,true ) end end) Link to comment
Mr.CoR Posted May 18, 2016 Share Posted May 18, 2016 -- client GUIEditor = { label = {}, window = {} } addEventHandler("onClientResourceStart", resourceRoot, function() local screenW, screenH = guiGetScreenSize() GUIEditor.window[1] = guiCreateWindow((screenW - 364) / 2, (screenH - 219) / 2, 364, 219, "Created By MR.NaiF-MTA", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 1.00) guiSetProperty(GUIEditor.window[1], "CaptionColour", "FFFC00FF") guiSetVisible ( GUIEditor.window[1], false ) -- هنا لازم تحط هذا الفانكشن .. داخل الايفنت FIX = guiCreateButton(64, 55, 251, 65, "اصلاح السيارة", false, GUIEditor.window[1]) guiSetProperty(FIX, "NormalTextColour", "FF5FFE00") Close = guiCreateButton(10, 177, 72, 28, "#Close", false, GUIEditor.window[1]) guiSetProperty(Close, "NormalTextColour", "FFFE0000") GUIEditor.label[1] = guiCreateLabel(116, 140, 209, 15, "نتمني لكم قضاء وقتا سعيدا في السيرفر", false, GUIEditor.window[1]) guiLabelSetColor(GUIEditor.label[1], 9, 59, 245) end ) -- اكواد اللوحة فوق guiSetVisible ( GUIEditor.window[1], false ) function OpenWin() if guiGetVisible ( GUIEditor.window[1] ) then guiSetVisible ( GUIEditor.window[1], false ) showCursor(false) guiSetInputEnabled(false) else guiSetVisible ( GUIEditor.window[1], true ) showCursor(true) guiSetInputEnabled(true) end end bindKey("f9", "down", OpenWin) -- كود الزر addEventHandler("onClientGUIClick",root, function () if source == Close then if(guiGetVisible(GUIEditor.window[1]) == false)then end guiSetVisible(GUIEditor.window[1],false) showCursor(false) guiSetInputEnabled(false) end end ) -- كود زر اغلاق addEventHandler("onClientGUIClick",resourceRoot,function () if ( source == FIX ) then triggerServerEvent ( "FixCar",localPlayer) end end) -- فنكشنات الفانكشن ينحط مع عناصر اللوحه داخل ايفنت "onClientResourceStart" Link to comment
#STZ Posted May 18, 2016 Author Share Posted May 18, 2016 السلام عليكم و رحمة الله وبركاتهكيف حالكم يا شباب الحين حبيبت اسوي سكربت زر تصليح السيارة لاني مبتدا طبعا لاكن اول ما ادخل اللوحة تطلع بوجهي مع اني ضفت الكود اللي خليها متطلع اطلب منكم تصحيح الكود -- client GUIEditor = { label = {}, window = {} } addEventHandler("onClientResourceStart", resourceRoot, function() local screenW, screenH = guiGetScreenSize() GUIEditor.window[1] = guiCreateWindow((screenW - 364) / 2, (screenH - 219) / 2, 364, 219, "Created By MR.NaiF-MTA", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 1.00) guiSetProperty(GUIEditor.window[1], "CaptionColour", "FFFC00FF") FIX = guiCreateButton(64, 55, 251, 65, "اصلاح السيارة", false, GUIEditor.window[1]) guiSetProperty(FIX, "NormalTextColour", "FF5FFE00") Close = guiCreateButton(10, 177, 72, 28, "#Close", false, GUIEditor.window[1]) guiSetProperty(Close, "NormalTextColour", "FFFE0000") GUIEditor.label[1] = guiCreateLabel(116, 140, 209, 15, "نتمني لكم قضاء وقتا سعيدا في السيرفر", false, GUIEditor.window[1]) guiLabelSetColor(GUIEditor.label[1], 9, 59, 245) end ) -- اكواد اللوحة فوق guiSetVisible ( GUIEditor.window[1], false ) function OpenWin() if guiGetVisible ( GUIEditor.window[1] ) then guiSetVisible ( GUIEditor.window[1], false ) showCursor(false) guiSetInputEnabled(false) else guiSetVisible ( GUIEditor.window[1], true ) showCursor(true) guiSetInputEnabled(true) end end bindKey("f9", "down", OpenWin) -- كود الزر addEventHandler("onClientGUIClick",root, function () if source == Close then if(guiGetVisible(GUIEditor.window[1]) == false)then end guiSetVisible(GUIEditor.window[1],false) showCursor(false) guiSetInputEnabled(false) end end ) -- كود زر اغلاق guiSetVisible ( GUIEditor.window[1], false ) -- كود ما تطلع بوجهك addEventHandler("onClientGUIClick",resourceRoot,function () if ( source == FIX ) then triggerServerEvent ( "FixCar",localPlayer) end end) -- فنكشنات -- server addEvent( "FixCar", true ) addEventHandler( "FixCar",root,function () local Veh = getPedOccupiedVehicle ( source ) if Veh then fixVehicle(Veh) outputChatBox(' تم اصلاح سيارتك بنجاح ', source ,0,255,0,true ) else outputChatBox(' لايوجد سيارة لاصلاحها ', source ,0,255,0,true ) end end) اللوحة ما صارت تطلع بوجهي تمام لاكن الزر ما يسوي اي شي و اللوحة خربت تكفوون ساعدوني Link to comment
Adham Posted May 18, 2016 Share Posted May 18, 2016 wnd = guiCreateWindow((screenW - 364) / 2, (screenH - 219) / 2, 364, 219, "Created By MR.NaiF-MTA", false) guiWindowSetSizable(wnd, false) guiSetAlpha(wnd, 1.00) guiSetProperty(wnd, "CaptionColour", "FFFC00FF") FIX = guiCreateButton(64, 55, 251, 65, "اصلاح السيارة", false, wnd) guiSetProperty(FIX, "NormalTextColour", "FF5FFE00") Close = guiCreateButton(10, 177, 72, 28, "#Close", false, wnd) guiSetProperty(Close, "NormalTextColour", "FFFE0000") label = guiCreateLabel(116, 140, 209, 15, "نتمني لكم قضاء وقتا سعيدا في السيرفر", false, wnd) guiLabelSetColor(label, 9, 59, 245) bindKey ( "F9", "down", function ( ) guiSetVisible ( wnd, not guiGetVisible ( wnd ) ) showCursor ( guiGetVisible (wnd ) ) end ) addEventHandler("onClientGUIClick",root, function () if ( source == Close ) then guiSetVisible(wnd,false) showCursor(false) end end ) addEventHandler("onClientGUIClick",resourceRoot,function () if ( source == FIX ) then triggerServerEvent ( "FixCar",localPlayer) end end) addEvent( "FixCar", true ) addEventHandler( "FixCar",root,function () local Veh = getPedOccupiedVehicle ( source ) if Veh then fixVehicle(Veh) outputChatBox(' تم اصلاح سيارتك بنجاح ', source ,0,255,0,true ) else outputChatBox(' لايوجد سيارة لاصلاحها ', source ,0,255,0,true ) end end) + لازم تكون في سياره Link to comment
MR.GRAND Posted May 19, 2016 Share Posted May 19, 2016 -- client GUIEditor = { label = {}, window = {} } local screenW, screenH = guiGetScreenSize() GUIEditor.window[1] = guiCreateWindow((screenW - 364) / 2, (screenH - 219) / 2, 364, 219, "Created By MR.NaiF-MTA", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 1.00) guiSetProperty(GUIEditor.window[1], "CaptionColour", "FFFC00FF") guiSetVisible ( GUIEditor.window[1], false ) -- هنا لازم تحط هذا الفانكشن .. داخل الايفنت FIX = guiCreateButton(64, 55, 251, 65, "اصلاح السيارة", false, GUIEditor.window[1]) guiSetProperty(FIX, "NormalTextColour", "FF5FFE00") Close = guiCreateButton(10, 177, 72, 28, "#Close", false, GUIEditor.window[1]) guiSetProperty(Close, "NormalTextColour", "FFFE0000") GUIEditor.label[1] = guiCreateLabel(116, 140, 209, 15, "نتمني لكم قضاء وقتا سعيدا في السيرفر", false, GUIEditor.window[1]) guiLabelSetColor(GUIEditor.label[1], 9, 59, 245) -- اكواد اللوحة فوق guiSetVisible ( GUIEditor.window[1], false ) function OpenWin() if guiGetVisible ( GUIEditor.window[1] ) then guiSetVisible ( GUIEditor.window[1], false ) showCursor(false) guiSetInputEnabled(false) else guiSetVisible ( GUIEditor.window[1], true ) showCursor(true) guiSetInputEnabled(true) end end bindKey("f9", "down", OpenWin) -- كود الزر addEventHandler("onClientGUIClick",root, function () if source == Close then if(guiGetVisible(GUIEditor.window[1]) == false)then end guiSetVisible(GUIEditor.window[1],false) showCursor(false) guiSetInputEnabled(false) end end ) -- كود زر اغلاق addEventHandler("onClientGUIClick",resourceRoot,function () if ( source == FIX ) then triggerServerEvent ( "FixCar",localPlayer) end end) -- فنكشنات عن نظرتي الخاصة إن "onClientResourceStart" مالها أي داعي تنحط مع ال gui وانا موداتي اللي اسويها احذف الكود ذذ أول ما اطلع ال gui لأن ماشوف انه مفيد اكثر ما انه يضر فــ الكود بيتحمل طبيعي بدون الحدث ذا Link to comment
Froze Posted May 19, 2016 Share Posted May 19, 2016 عدل سطر 25 من if guiGetVisible ( GUIEditor.window[1] ) then الى if guiGetVisible ( GUIEditor.window[1] == true ) then Link to comment
MR.GRAND Posted May 19, 2016 Share Posted May 19, 2016 عدل سطر 25 من if guiGetVisible ( GUIEditor.window[1] ) then الى if guiGetVisible ( GUIEditor.window[1] == true ) then نفس الشيء ^.^ الشيء اللي يبي يوصله هو نفسه في الحالتين رح يجيب النافذة لو صح يكمل الفنكشناتء Link to comment
!#NssoR_) Posted May 19, 2016 Share Posted May 19, 2016 عدل سطر 25 من if guiGetVisible ( GUIEditor.window[1] ) then الى if guiGetVisible ( GUIEditor.window[1] == true ) then : طريقة إستخدامك خطأ للكود المفروض كذا if ( guiGetVisible ( GUIEditor.window[1] ) == true ) then ومثل ماقالك الاخ جراند ماراح يفرق حطيت == true او ماحطيتها Link to comment
#STZ Posted May 20, 2016 Author Share Posted May 20, 2016 السلام عليكم و رحمة الله وبركاتهكيف حالكم يا شباب الحين حبيبت اسوي سكربت زر تصليح السيارة لاني مبتدا طبعا لاكن اول ما ادخل اللوحة تطلع بوجهي مع اني ضفت الكود اللي خليها متطلع اطلب منكم تصحيح الكود -- client GUIEditor = { label = {}, window = {} } addEventHandler("onClientResourceStart", resourceRoot, function() local screenW, screenH = guiGetScreenSize() GUIEditor.window[1] = guiCreateWindow((screenW - 364) / 2, (screenH - 219) / 2, 364, 219, "Created By MR.NaiF-MTA", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 1.00) guiSetProperty(GUIEditor.window[1], "CaptionColour", "FFFC00FF") FIX = guiCreateButton(64, 55, 251, 65, "اصلاح السيارة", false, GUIEditor.window[1]) guiSetProperty(FIX, "NormalTextColour", "FF5FFE00") Close = guiCreateButton(10, 177, 72, 28, "#Close", false, GUIEditor.window[1]) guiSetProperty(Close, "NormalTextColour", "FFFE0000") GUIEditor.label[1] = guiCreateLabel(116, 140, 209, 15, "نتمني لكم قضاء وقتا سعيدا في السيرفر", false, GUIEditor.window[1]) guiLabelSetColor(GUIEditor.label[1], 9, 59, 245) end ) -- اكواد اللوحة فوق guiSetVisible ( GUIEditor.window[1], false ) function OpenWin() if guiGetVisible ( GUIEditor.window[1] ) then guiSetVisible ( GUIEditor.window[1], false ) showCursor(false) guiSetInputEnabled(false) else guiSetVisible ( GUIEditor.window[1], true ) showCursor(true) guiSetInputEnabled(true) end end bindKey("f9", "down", OpenWin) -- كود الزر addEventHandler("onClientGUIClick",root, function () if source == Close then if(guiGetVisible(GUIEditor.window[1]) == false)then end guiSetVisible(GUIEditor.window[1],false) showCursor(false) guiSetInputEnabled(false) end end ) -- كود زر اغلاق guiSetVisible ( GUIEditor.window[1], false ) -- كود ما تطلع بوجهك addEventHandler("onClientGUIClick",resourceRoot,function () if ( source == FIX ) then triggerServerEvent ( "FixCar",localPlayer) end end) -- فنكشنات -- server addEvent( "FixCar", true ) addEventHandler( "FixCar",root,function () local Veh = getPedOccupiedVehicle ( source ) if Veh then fixVehicle(Veh) outputChatBox(' تم اصلاح سيارتك بنجاح ', source ,0,255,0,true ) else outputChatBox(' لايوجد سيارة لاصلاحها ', source ,0,255,0,true ) end end) انا عندي مشكلة كبيرة كبيرة كل سكربتاتي تطلع بوجه اللعب مع انه صعبة و حلوة ابي الكود و ين احطه بالظبط ابي ترتيب اكواد اللوحة كود اغلاق كود زر ما تطلع بوجهي فنشكنات و الايفنت 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