Jump to content

playSound , getSoundLenth


Recommended Posts

سلام عليكم

ابي اشغل صوت من السيرفر عن طريق رابط 

ويشغل الصوت ويكتبلي بالشات حجم الصوت كام 

يعني كام ثانية الصوت

هادي تطلع الصوت 0

sound = playSound3D(link, -1233.9285888672, 456.3063659668, 6.4603748321533, true) 
length_s = getSoundLength(sound)
outputChatBox(length_s,255,0,0,true)

 

Link to comment
  On 01/07/2019 at 19:09, Mr.Mostafa said:

سلام عليكم

ابي اشغل صوت من السيرفر عن طريق رابط 

ويشغل الصوت ويكتبلي بالشات حجم الصوت كام 

يعني كام ثانية الصوت

هادي تطلع الصوت 0


sound = playSound3D(link, -1233.9285888672, 456.3063659668, 6.4603748321533, true) 
length_s = getSoundLength(sound)
outputChatBox(length_s,255,0,0,true)

 

Expand  

link = ?

  • Like 1
Link to comment
  • 2 weeks later...
  On 13/07/2019 at 22:38, Mr.Mostafa said:

كيف اتحقق من اسم الصوت في هذا الحدث ؟

Expand  

اعتقد كذا


sound = playSound3D(link, -1233.9285888672, 456.3063659668, 6.4603748321533, true)
addEventHandler("onClientSoundStarted", sound,
  function(rsn)
    if rsn == "play" then
      length_s = getSoundLength(sound)
      outputChatBox(length_s,255,0,0,true)
    end
  end
)

 

ان شاء الله ما يكون هريسه

Link to comment
  On 13/07/2019 at 23:37, +Source|> said:

اعتقد كذا

sound = playSound3D(link, -1233.9285888672, 456.3063659668, 6.4603748321533, true)
addEventHandler("onClientSoundStarted", sound,
  function(rsn)
    if rsn == "play" then
      length_s = getSoundLength(sound)
      outputChatBox(length_s,255,0,0,true)
    end
  end
)

 

ان شاء الله ما يكون هريسه

Expand  
sound = playSound3D(link, -1233.9285888672, 456.3063659668, 6.4603748321533, true)
addEventHandler("onClientSoundStarted", sound,
  function(rsn)
    if rsn == "play" and source == sound then
      length_s = getSoundLength(sound)
      outputChatBox(length_s,255,0,0,true)
    end
  end
)

 

Link to comment
  On 14/07/2019 at 00:53, NX_CI said:

sound = playSound3D(link, -1233.9285888672, 456.3063659668, 6.4603748321533, true)
addEventHandler("onClientSoundStarted", sound,
  function(rsn)
    if rsn == "play" and source == sound then
      length_s = getSoundLength(sound)
      outputChatBox(length_s,255,0,0,true)
    end
  end
)

 

Expand  

تحققك ماله داعي, لأن الحدث على الصوت نفسه

نهاية سطر 2

Link to comment
addEvent ( "setTheDSound", true )
addEventHandler ( "setTheDSound", root,
	function(link)
				if ( isElement ( mysound ) ) then destroyElement ( mysound ) end

					mysound = playSound3D(link, -1233.9285888672, 456.3063659668, 6.4603748321533, true) 
					setSoundMaxDistance(mysound, 25)
					setSoundVolume(mysound, 20.0)
					guiSetEnabled(GUIEditor.button[1], false)

	end
)


addEventHandler("onClientSoundStarted", mysound,
  function(rsn)
   if rsn == "play" then
	  outputChatBox("started",255,0,0,true)
      length_s = getSoundLength(mysound)
      outputChatBox(length_s,255,0,0,true)
    end
  end
)

ما اشتغل ?

@N3xT

@NX_CI

Link to comment
addEventHandler("onClientSoundStarted", resourceRoot, function(reason)
    if source == mysound and reason == "play" then
        outputChatBox("started", 255, 0, 0, true)
        local length_s = getSoundLength(source)
        outputChatBox(tostring(length_s), 255, 0, 0, true)
    end
end)

 

Edited by #,xiRocKyz
Link to comment
  On 14/07/2019 at 19:12, #,xiRocKyz said:

addEventHandler("onClientSoundStarted", resourceRoot, function(reason)
    if source == mysound and reason == "play" then
        outputChatBox("started", 255, 0, 0, true)
        local length_s = getSoundLength(source)
        outputChatBox(tostring(length_s), 255, 0, 0, true)
    end
end)


 

Expand  

ما ظبط + ما يطلع شي في الشات ض

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...