Jump to content

* [ playSound ] شرح


Recommended Posts

                                                                          بسم الله الرحمن الرحيم
اليوم جايبلكم شرح وظيفة

 

playSound

Client Only طبعا الوظيفة

p_614m5ox81.png


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 وتحط لينك جوا ايديت وتضغط زر تشغيل الاغاني وتشتغلك عن طريق اللينك
وتطفيها من زر اطفاء

p_6144f0yy1.png
---
وهنا وصلنا لنهاية الشرح اتمني يكون اعجبكم :) 
ويلا مع السلامة

  • Like 1
  • Thanks 1
Link to comment

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...