Doffy Posted September 6, 2017 Share Posted September 6, 2017 بسم الله الرحمن الرحيماليوم جايبلكم شرح وظيفة playSound Client Only طبعا الوظيفةSyntax الحين نيجي لل element playSound ( string soundPath, [ bool looped = false ] ) string soundPath = تضيف سترينج وتقدر تضيف الاغنية عن طريق لينك او من عندك bool looped = ما بتنعاد مرة اخري بس تخلص false بتنعاد لما تخلص الاغنية كذا مرة انما لو خليتها true لو خليتها ------مثال 1 <meta> <script src="c.lua" type="client" cache="false" /> <file src="music.mp3" /> </meta> هيك تضيف الاغنية بلميتا addEventHandler( 'onClientResourceStart', resourceRoot, function( ) local Sound = playSound("music.mp3", true) end) مشان اول م الاغنية تخلص تنعاد مرة اخري true هنا خلينا اول ما المود يشتغل تشتغل الاغنية وحطينا ------مثال 2 local screenW, screenH = guiGetScreenSize() window = guiCreateWindow((screenW - 467) / 2, (screenH - 216) / 2, 467, 216, "Sound Test | by #Himoo", false) guiWindowSetSizable(window, false) guiSetVisible(window, false) link = guiCreateEdit(10, 50, 447, 43, "", false, window) label1 = guiCreateLabel(11, 25, 120, 15, "Link :", false, window) guiSetFont(label1, "default-bold-small") play = guiCreateButton(14, 108, 156, 36, "تشغيل", false, window) stop = guiCreateButton(14, 154, 156, 36, "اطفاء", false, window) Close = guiCreateButton(301, 154, 156, 36, "اغلاق", false, window) bindKey("F3","down", function() getVisible = guiGetVisible (window) if (getVisible == true) then guiSetVisible (window, false) showCursor (false) guiSetInputEnabled(false) end if (getVisible == false) then showCursor (true) guiSetVisible(window, true) guiSetInputEnabled( true ) end end) addEventHandler("onClientGUIClick",root, function() if ( source == play ) then l = guiGetText(link) sound = playSound(l, true) outputChatBox("تم تشغيل موسيقي",255,255,0,true) elseif ( source == stop ) then if ( isElement(sound) ) then stopSound(sound) end outputChatBox("تم اطفاء الموسيقي",255,255,0,true) elseif ( source == Close ) then guiSetVisible(window, false) showCursor( false ) guiSetInputEnabled( false ) end end) خلينا لوحة تفتح من اف 3 وتحط لينك جوا ايديت وتضغط زر تشغيل الاغاني وتشتغلك عن طريق اللينك وتطفيها من زر اطفاء ---وهنا وصلنا لنهاية الشرح اتمني يكون اعجبكم ويلا مع السلامة 1 1 Link to comment
Aln3mani Posted September 6, 2017 Share Posted September 6, 2017 (edited) شرح جميل ومفيد . Edited September 6, 2017 by !#NssoR_) Removed the quote. 1 Link to comment
Doffy Posted September 6, 2017 Author Share Posted September 6, 2017 21 hours ago, Aln3mani said: شرح جميل ومفيد . منور الموضوع Link to comment
Aln3mani Posted September 6, 2017 Share Posted September 6, 2017 Just now, #Himoo said: منور الموضوع ب وجودك Link to comment
Doffy Posted September 6, 2017 Author Share Posted September 6, 2017 (edited) 21 hours ago, Aln3mani said: ب وجودك حبيبي الله يخليك Edited September 6, 2017 by #Himoo 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