Adham Posted March 5, 2016 Share Posted March 5, 2016 ابي كود اليضعط علي button اسمه Destroy Car تتسحب السياره --- وكود تاني فتح اللوحه بحرف m وكدا -- وكود تالت اليضعط m ويدوس علي نفسه يطلع له لوحه وشكرا # Link to comment
Me[Z]oO Posted March 5, 2016 Share Posted March 5, 2016 ابي كوداليضعط علي button اسمه Destroy Car تتسحب السياره --- وكود تاني فتح اللوحه بحرف m وكدا -- وكود تالت اليضعط m ويدوس علي نفسه يطلع له لوحه وشكرا # onClientGUIClick destroyElement bindKey guiSetVisible Link to comment
Adham Posted March 5, 2016 Author Share Posted March 5, 2016 ابي اكود جاهز مش عارف اطلعه Link to comment
Me[Z]oO Posted March 5, 2016 Share Posted March 5, 2016 ابي اكود جاهزمش عارف اطلعه حاول علي الاقل Link to comment
Adham Posted March 5, 2016 Author Share Posted March 5, 2016 طيب طلعلي كودين كود اليمثلن انا عامل button اسمه Destroy Car يتسحب السياره -- و اليفتح ب حرف " m " -- وابي تعليم كيف اطلع الكودات العططهالي Link to comment
Me[Z]oO Posted March 5, 2016 Share Posted March 5, 2016 addEventHandler("onClientGUIClick",root,function() if source == button then destroyElement ( اسم المتغير حق السيارة ) end end) --- الطلب الثاني bindKey("m","down",function() if guiGetVisible (window name) == true then guiSetVisible(window name,false) else guiSetVisible(window name,true) end end بعتذر لو في اخطاء كتبته ع السريع Link to comment
Adham Posted March 5, 2016 Author Share Posted March 5, 2016 ممعلش بس يعني ايه دي اسم المتغير حق السيارة Link to comment
Me[Z]oO Posted March 5, 2016 Share Posted March 5, 2016 ممعلش بسيعني ايه دي اسم المتغير حق السيارة عندك بلكود اكيد في local m7md = createVehicle (...) صح ؟ حط ما بين الكوسين m7md علي حسب الاسم Link to comment
Adham Posted March 5, 2016 Author Share Posted March 5, 2016 ي اخي افهمني مثلن انا عامل لوحه عاديه وعامل button اسمه Destroy Car عاوز اليضعط عليها تتسحب سياره اللاعب Link to comment
Me[Z]oO Posted March 5, 2016 Share Posted March 5, 2016 ي اخي افهمنيمثلن انا عامل لوحه عاديه وعامل button اسمه Destroy Car عاوز اليضعط عليها تتسحب سياره اللاعب هات الكود حقك Link to comment
Adham Posted March 5, 2016 Author Share Posted March 5, 2016 GUIEditor = { button = {}, window = {} } addEventHandler("onClientResourceStart", resourceRoot, function() GUIEditor.window[1] = guiCreateWindow(225, 146, 352, 352, "Test", false) guiWindowSetSizable(GUIEditor.window[1], false) GUIEditor.button[1] = guiCreateButton(46, 157, 185, 44, "Destroy car", false, GUIEditor.window[1]) guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFAAAAAA") end ) Link to comment
iMr.SFA7 Posted March 5, 2016 Share Posted March 5, 2016 (edited) addEventHandler("onClientGUIClick",root,function() if source == button then destroyElement ( اسم المتغير حق السيارة ) end end) --- الطلب الثاني bindKey("m","down",function() if guiGetVisible (window name) == true then guiSetVisible(window name,false) else guiSetVisible(window name,true) end end بعتذر لو في اخطاء كتبته ع السريع أكوادكـ ماهيب صحيحة !! createVehicle هو يقصد يسحب سيارة اللاعب مهيب سيارة مسويها بالوظيفة والمفروض بوظيفة فتح اللوحة تحط له الماوس ع العموم أكوادكـ تصير كذا -- Client Side ; addEventHandler("onClientGUIClick",root,function( ) if source == button then if not isPedInVehicle(localPlayer) then return end destroyElement ( getPedOccupiedVehicle(localPlayer) ) end end ) bindKey("m","down",function( ) if guiGetVisible (window) == true then guiSetVisible(window,false) showCursor(false) else guiSetVisible(window,true) showCursor(true) end end ) Edited March 5, 2016 by Guest Link to comment
Me[Z]oO Posted March 5, 2016 Share Posted March 5, 2016 (edited) addEventHandler("onClientGUIClick",root,function() if source == button then local vehicles = getPedOccupiedVehicle (localPlayer) if (vehicles) then destroyElement ( vehicles ) end end end) --- الطلب الثاني bindKey("m","down",function() if guiGetVisible (window name) == true then guiSetVisible(window name,false) showCursor(false) else guiSetVisible(window name,true) showCursor(true) end end) Edited March 5, 2016 by Guest Link to comment
Me[Z]oO Posted March 5, 2016 Share Posted March 5, 2016 اسف سفاح ما شفت ردك الي فوق + انا قلت بعتذر لو في اخطاء لاني كتبته علي السريع Link to comment
#Mr.Rajo~,< Posted March 5, 2016 Share Posted March 5, 2016 ماله داعي التحقق ض1 اكيد هتكون سيارته لانه هو اللي دق الزر مو اللي جنبه Link to comment
Me[Z]oO Posted March 5, 2016 Share Posted March 5, 2016 ماله داعي التحقق ض1اكيد هتكون سيارته لانه هو اللي دق الزر مو اللي جنبه مشكور ع المعلومة تسسلم Link to comment
iMr.SFA7 Posted March 5, 2016 Share Posted March 5, 2016 اسف سفاح ما شفت ردك الي فوق+ انا قلت بعتذر لو في اخطاء لاني كتبته علي السريع . ناقصكـ قوس بالسطر 19 Link to comment
Me[Z]oO Posted March 5, 2016 Share Posted March 5, 2016 اسف سفاح ما شفت ردك الي فوق+ انا قلت بعتذر لو في اخطاء لاني كتبته علي السريع . ناقصكـ قوس بالسطر 19 طيب مشكور كتبته ع السريع Link to comment
Adham Posted March 5, 2016 Author Share Posted March 5, 2016 ايه المشكله GUIEditor = { button = {}, window = {} } addEventHandler("onClientResourceStart", resourceRoot, function() GUIEditor.window[1] = guiCreateWindow(225, 146, 352, 352, "Test", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetVisible(GUIEditor.window[1] ,false) -- عدم اظهار الوحة وقت تشغيل المود GUIEditor.button[1] = guiCreateButton(46, 157, 185, 44, "Destroy car", false, GUIEditor.window[1]) guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFAAAAAA") end ) addEventHandler("onClientGUIClick",root,function() if source == GUIEditor.button[1] then local vehicles = getPedOccupiedVehicle (localPlayer) if (vehicles) then destroyElement ( vehicles ) end end end) --- الطلب الثاني bindKey("m","down",function() if guiGetVisible (GUIEditor.window[1]) == true then guiSetVisible(GUIEditor.window[1],false) showCursor(false) else guiSetVisible(GUIEditor.window[1],true) showCursor(true) end end Link to comment
Me[Z]oO Posted March 5, 2016 Share Posted March 5, 2016 ايه المشكله GUIEditor = { button = {}, window = {} } addEventHandler("onClientResourceStart", resourceRoot, function() GUIEditor.window[1] = guiCreateWindow(225, 146, 352, 352, "Test", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetVisible(GUIEditor.window[1] ,false) -- عدم اظهار الوحة وقت تشغيل المود GUIEditor.button[1] = guiCreateButton(46, 157, 185, 44, "Destroy car", false, GUIEditor.window[1]) guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFAAAAAA") end ) addEventHandler("onClientGUIClick",root,function() if source == GUIEditor.button[1] then local vehicles = getPedOccupiedVehicle (localPlayer) if (vehicles) then destroyElement ( vehicles ) end end end) --- الطلب الثاني bindKey("m","down",function() if guiGetVisible (GUIEditor.window[1]) == true then guiSetVisible(GUIEditor.window[1],false) showCursor(false) else guiSetVisible(GUIEditor.window[1],true) showCursor(true) end end GUIEditor = { button = {}, window = {} } addEventHandler("onClientResourceStart", resourceRoot, function() GUIEditor.window[1] = guiCreateWindow(225, 146, 352, 352, "Test", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetVisible(GUIEditor.window[1] ,false) -- عدم اظهار الوحة وقت تشغيل المود GUIEditor.button[1] = guiCreateButton(46, 157, 185, 44, "Destroy car", false, GUIEditor.window[1]) guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFAAAAAA") end ) addEventHandler("onClientGUIClick",root,function() if source == GUIEditor.button[1] then local vehicles = getPedOccupiedVehicle (localPlayer) if (vehicles) then destroyElement ( vehicles ) end end end) --- الطلب الثاني bindKey("m","down",function() if guiGetVisible (GUIEditor.window[1]) == true then guiSetVisible(GUIEditor.window[1],false) showCursor(false) else guiSetVisible(GUIEditor.window[1],true) showCursor(true) end end) Link to comment
Abdul KariM Posted March 5, 2016 Share Posted March 5, 2016 GUIEditor = { button = {}, window = {} } GUIEditor.window[1] = guiCreateWindow(225, 146, 352, 352, "Test", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetVisible(GUIEditor.window[1] ,false) -- عدم اظهار الوحة وقت تشغيل المود GUIEditor.button[1] = guiCreateButton(46, 157, 185, 44, "Destroy car", false, GUIEditor.window[1]) guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFAAAAAA") addEventHandler("onClientGUIClick",root,function() if source == GUIEditor.button[1] then if isPedInVehicle ( localPlayer ) then destroyElement ( getPedOccupiedVehicle(localPlayer) ) end end end ) --- الطلب الثاني bindKey("m","down", function ( ) guiSetVisible ( GUIEditor.window[1] , not guiGetVisible ( GUIEditor.window[1] ) ) showCursor ( not isCursorShowing ( ) ) end ); Link to comment
Adham Posted March 5, 2016 Author Share Posted March 5, 2016 مشكورر .. طيب لما ابي اعمل سبورت سيستم وش استخدم اكواد. Link to comment
Me[Z]oO Posted March 5, 2016 Share Posted March 5, 2016 GUIEditor = { button = {}, window = {} } GUIEditor.window[1] = guiCreateWindow(225, 146, 352, 352, "Test", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetVisible(GUIEditor.window[1] ,false) -- عدم اظهار الوحة وقت تشغيل المود GUIEditor.button[1] = guiCreateButton(46, 157, 185, 44, "Destroy car", false, GUIEditor.window[1]) guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFAAAAAA") addEventHandler("onClientGUIClick",root,function() if source == GUIEditor.button[1] then if isPedInVehicle ( localPlayer ) then destroyElement ( getPedOccupiedVehicle(localPlayer) ) end end end ) --- الطلب الثاني bindKey("m","down", function ( ) guiSetVisible ( GUIEditor.window[1] , not guiGetVisible ( GUIEditor.window[1] ) ) showCursor ( not isCursorShowing ( ) ) end ); طيب وش الفرق ._. Link to comment
Me[Z]oO Posted March 5, 2016 Share Posted March 5, 2016 مشكورر ..طيب لما ابي اعمل سبورت سيستم وش استخدم اكواد. حياك الله + علي حسب ابداعك ي بطل 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