Doffy Posted February 4, 2017 Share Posted February 4, 2017 ابي اول ما الواحد يحط اي لينك في ايديت بوكس ويضغط زر تشتغل الاغنية بلرابط لكل اللي في السيرفر ولما يضغط علي زر ثاني توقف الاغنية الي هو شغلها Link to comment
#STZ Posted February 4, 2017 Share Posted February 4, 2017 onClientGUIClick guiGetText playSound اعتقد ما راح تحتاج الا هذولا و انتظر رد الشباب تبي كل السيرفر يسمعها ؟؟ لازم تريقر للسيرفر و ترسله تاني للكلاينت و تستقبله باللكلاينت اعتقد ذا الصح والله اعلم Link to comment
#Soking Posted February 4, 2017 Share Posted February 4, 2017 يب , الصح انه يرسلها سيرفر triggerServerEvent( 'Event1' , localPlayer) و تروح ترسلها من سيرفر لـ كلينت بس تخليها root >_< Link to comment
Doffy Posted February 4, 2017 Author Share Posted February 4, 2017 2 hours ago, #Soking said: يب , الصح انه يرسلها سيرفر triggerServerEvent( 'Event1' , localPlayer) و تروح ترسلها من سيرفر لـ كلينت بس تخليها root >_< ابيه بي لينك مو بأغنية انا احطها ابيه بلينك + كمان ابيه اول ما يضغط زر ثاني يوقف الاغنية Link to comment
Abu-Solo Posted February 4, 2017 Share Posted February 4, 2017 7 minutes ago, KinG_Himoo12 said: ابيه بي لينك مو بأغنية انا احطها ابيه بلينك + كمان ابيه اول ما يضغط زر ثاني يوقف الاغنية stopSound https://wiki.multitheftauto.com/wiki/StopSound Link to comment
Doffy Posted February 4, 2017 Author Share Posted February 4, 2017 Just now, Abu-Solo said: stopSound https://wiki.multitheftauto.com/wiki/StopSound شوف ابو سولو انا ابيه اول ما يحط لينك اي اغنية في ايديت بوكس ويضغط زر يشغل الاغنية الي حطها في الايديت بوكس واول ما تضغط علي زر ثاني يوقف الاغنية فهمتني ؟ Link to comment
#STZ Posted February 4, 2017 Share Posted February 4, 2017 من الاخر تبي تتعلم واعطيك فنكشنات ولا اعطيك جاهز ؟ Link to comment
' A F . Posted February 4, 2017 Share Posted February 4, 2017 18 minutes ago, MR.NaiF-MTA said: من الاخر تبي تتعلم واعطيك فنكشنات ولا اعطيك جاهز ؟ تعطيه جآهز ليه ؟ كذا ماراح يتعلم عطيه الفنكشنات . Link to comment
Adham Posted February 4, 2017 Share Posted February 4, 2017 لازم , تحققات حاول في الكود وبساعدك فيه إنشاء الله ^ Link to comment
Jw8. Posted February 5, 2017 Share Posted February 5, 2017 playSound3D تقصد تحط رابط ؟ Link to comment
#STZ Posted February 5, 2017 Share Posted February 5, 2017 1 hour ago, DmAr511 said: playSound3D تقصد تحط رابط ؟ عادي لو تصير هيك playSound("http://www.naif.com/wasted.mp3") soundPath: the filepath or URL of the sound file you want to play. (Sound specified by filepath has to be predefined in the meta.xml file with <file /> tag.) الفنكشنات onClientGUIClick guiGetText triggerServerEvent triggerClientEvent ( root ) playSound stopSound اعتقد مارح تحتاج الا هاذا و ممكن زر اغلاق لوحة اشياء بسيطة اذا تبي تظبط اللوحة 1 Link to comment
Doffy Posted February 5, 2017 Author Share Posted February 5, 2017 18 hours ago, MR.NaiF-MTA said: من الاخر تبي تتعلم واعطيك فنكشنات ولا اعطيك جاهز ؟ معليش جاهز ونا بقرا الاكواد وبحاول افهم منهم Link to comment
#STZ Posted February 5, 2017 Share Posted February 5, 2017 ادخل الويكي بتفهم من الامثلة @KinG_Himoo12 Link to comment
Doffy Posted February 5, 2017 Author Share Posted February 5, 2017 Just now, MR.NaiF-MTA said: ادخل الويكي بتفهم من الامثلة @KinG_Himoo12 دخلت وما فهمت والله Link to comment
Abu-Solo Posted February 6, 2017 Share Posted February 6, 2017 (edited) ----Client --- getx = اسم الايدت بوكس ---- Start = اسم زرار التشغيل ---- Stop = اسم زرار الايقاف addEventHandler("onClientGUIClick",root,function() local getx = guiGetText(MEdit) local Name = getPlayerName(localPlayer) if ( getx =="" ) or ( getx == " " ) then return end if source == Start then triggerServerEvent("Play",localPlayer,getx,Name) elseif source == Stop then triggerServerEvent("Stop",localPlayer) end end ) addEvent("PlaySound",true) addEventHandler("PlaySound",root, function(getx) pl = playSound (getx) end ) addEvent("StopBTN",true) addEventHandler("StopBTN",root, function() stopSound( pl ) end ) ---- ---Server --- addEvent("Play",true) addEventHandler("Play",root, function(getx,Name) if (getx) then triggerClientEvent("PlaySound",root,getx) outputChatBox("بتشغيل رابط " .. Name .. " قام اللاعب" ,root,255,0,0,true) end end ) addEvent("Stop",true) addEventHandler("Stop",root, function() triggerClientEvent("StopBTN",root) end ) Edited February 6, 2017 by Abu-Solo Link to comment
N3xT Posted February 6, 2017 Share Posted February 6, 2017 55 minutes ago, Abu-Solo said: ----Client --- getx = اسم الايدت بوكس ---- Start = اسم زرار التشغيل ---- Stop = اسم زرار الايقاف addEventHandler("onClientGUIClick",root,function() local getx = guiGetText(MEdit) local Name = getPlayerName(localPlayer) if ( getx =="" ) or ( getx == " " ) then return end if source == Start then triggerServerEvent("Play",localPlayer,getx,Name) elseif source == Stop then triggerServerEvent("Stop",localPlayer) end end ) addEvent("PlaySound",true) addEventHandler("PlaySound",root, function(getx) pl = playSound (getx) end ) addEvent("StopBTN",true) addEventHandler("StopBTN",root, function() stopSound( pl ) end ) ---- ---Server --- addEvent("Play",true) addEventHandler("Play",root, function(getx,Name) if (getx) then triggerClientEvent("PlaySound",root,getx) outputChatBox("بتشغيل رابط " .. Name .. " قام اللاعب" ,root,255,0,0,true) end end ) addEvent("Stop",true) addEventHandler("Stop",root, function() triggerClientEvent("StopBTN",root) end ) triggerClientEvent("PlaySound",root,getx) خطأ ، تحقق من الارقمنتات Link to comment
Abu-Solo Posted February 6, 2017 Share Posted February 6, 2017 ----Client --- get = اسم الايدت بوكس ---- Start = اسم زرار التشغيل ---- Stop = اسم زرار الايقاف addEventHandler("onClientGUIClick",root,function() local get = guiGetText(MEdit) local Name = getPlayerName(localPlayer) if ( get =="" ) or ( get == " " ) then return end if source == Start then triggerServerEvent("Play",localPlayer,get,Name) elseif source == Stop then triggerServerEvent("Stop",localPlayer) end end ) addEvent("PlaySound",true) addEventHandler("PlaySound",root, function(get) pl = playSound (get) end ) addEvent("StopBTN",true) addEventHandler("StopBTN",root, function() stopSound( pl ) end ) ---- ---Server --- addEvent("Play",true) addEventHandler("Play",root, function(get,Name) if (get) then triggerClientEvent("PlaySound",root,get) outputChatBox("بتشغيل رابط " .. Name .. " قام اللاعب" ,root,255,0,0,true) end end ) addEvent("Stop",true) addEventHandler("Stop",root, function() triggerClientEvent("StopBTN",root) end ) بس الكود شغال Link to comment
N3xT Posted February 6, 2017 Share Posted February 6, 2017 11 minutes ago, Abu-Solo said: ----Client --- get = اسم الايدت بوكس ---- Start = اسم زرار التشغيل ---- Stop = اسم زرار الايقاف addEventHandler("onClientGUIClick",root,function() local get = guiGetText(MEdit) local Name = getPlayerName(localPlayer) if ( get =="" ) or ( get == " " ) then return end if source == Start then triggerServerEvent("Play",localPlayer,get,Name) elseif source == Stop then triggerServerEvent("Stop",localPlayer) end end ) addEvent("PlaySound",true) addEventHandler("PlaySound",root, function(get) pl = playSound (get) end ) addEvent("StopBTN",true) addEventHandler("StopBTN",root, function() stopSound( pl ) end ) ---- ---Server --- addEvent("Play",true) addEventHandler("Play",root, function(get,Name) if (get) then triggerClientEvent("PlaySound",root,get) outputChatBox("بتشغيل رابط " .. Name .. " قام اللاعب" ,root,255,0,0,true) end end ) addEvent("Stop",true) addEventHandler("Stop",root, function() triggerClientEvent("StopBTN",root) end ) بس الكود شغال ما أتكلم عن إذا شغال ولا لا ، إلتزم بالأرقمنتات كودك بالكلنت مستعمل قيت كـ متغير وهي سيرفر سايد لذلك ممكن تسبب أخطاء والتريقر صححه Link to comment
Abu-Solo Posted February 6, 2017 Share Posted February 6, 2017 1 hour ago, Abu-Solo said: ----Client --- getx = اسم الايدت بوكس ---- Start = اسم زرار التشغيل ---- Stop = اسم زرار الايقاف addEventHandler("onClientGUIClick",root,function() local getx = guiGetText(MEdit) local Name = getPlayerName(localPlayer) if ( getx =="" ) or ( getx == " " ) then return end if source == Start then triggerServerEvent("Play",localPlayer,getx,Name) elseif source == Stop then triggerServerEvent("Stop",localPlayer) end end ) addEvent("PlaySound",true) addEventHandler("PlaySound",root, function(getx) pl = playSound (getx) end ) addEvent("StopBTN",true) addEventHandler("StopBTN",root, function() stopSound( pl ) end ) ---- ---Server --- addEvent("Play",true) addEventHandler("Play",root, function(getx,Name) if (getx) then triggerClientEvent(root,"PlaySound",root,getx) outputChatBox("بتشغيل رابط " .. Name .. " قام اللاعب" ,root,255,0,0,true) end end ) addEvent("Stop",true) addEventHandler("Stop",root, function() triggerClientEvent(root,"StopBTN",root) end ) Link to comment
N3xT Posted February 6, 2017 Share Posted February 6, 2017 أحسنت بس ناقصك شوي تحققات لتجنب التحذيرات والأخطاء 1 Link to comment
Abu-Solo Posted February 6, 2017 Share Posted February 6, 2017 Just now, N3xT said: أحسنت بس ناقصك شوي تحققات لتجنب التحذيرات والأخطاء هههههههه طيب يا مدرسي الخصوصي وش هي التحققات عشان اتجنب التحذيرات والاخطار؟ Link to comment
N3xT Posted February 6, 2017 Share Posted February 6, 2017 يعني تتحقق إذا الصوت موجود قبل لا تشغله / تشيله الخخ. 1 Link to comment
Abu-Solo Posted February 6, 2017 Share Posted February 6, 2017 Just now, N3xT said: يعني تتحقق إذا الصوت موجود قبل لا تشغله / تشيله الخخ. انا عطتيته الاكواد , يعدل بكيفه عاد يضيف اللي يبي يضيفه, انا سويت اللي علي , Link to comment
Master_MTA Posted February 6, 2017 Share Posted February 6, 2017 2 minutes ago, Abu-Solo said: انا عطتيته الاكواد , يعدل بكيفه عاد يضيف اللي يبي يضيفه, انا سويت اللي علي , اسمع النصيحه ولا تذمر الاخ حاول يفيدك عامله بطريقه احسن + ذي نصيحتي 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