PlaySound

From Multi Theft Auto: Wiki
Revision as of 13:23, 2 October 2013 by OpenIDUser59 (talk | contribs)
Jump to navigation Jump to search

يمكنك سماع صوت او موسيقى في هذي الوظيفة للاعب نفسه.

ملاحظة: MP3, WAV, OGG, RIFF, MOD, XM, IT, S3M and PLS لا يقبل الصوت الا الصيغ التالية.

Syntax

element playSound ( string soundPath, [ bool looped = false ] )

الاشياء المطلوبة

  • soundPath: يمكنك وضع اسم ملف الصوت او رابط صوت مباشر. [يجب وضع اسم ملف الصوت في ملف الميتا حتى يتم قراءة الصوت

Example

function wasted (killer, weapon, bodypart) 
	local sound = playSound("sounds/wasted.mp3") --هنا وضع مكان الصوت واسمه
	setSoundVolume(sound, 0.5) -- وهنا لارتفاع الصوت 
end

addEventHandler("onClientPlayerWasted", getLocalPlayer(), wasted) --هنا حدث اذا مات الاعب يبدأ الصوت 

See Also