Ahmadhani Posted May 24, 2014 Share Posted May 24, 2014 السلام عليكم اي وظايف اذا اللاعب مات يطلع صوت كذا wasted لاهنتم ابي وظايف مبي مثال ابي اتعلم يلا بروب Link to comment
</Mr.Tn6eL> Posted May 24, 2014 Share Posted May 24, 2014 'onClientPlayerWasted' playSound Link to comment
K1NG Posted May 25, 2014 Share Posted May 25, 2014 'onClientPlayerWasted' playSound : يُفضل إستخدام هذه الوظائف حتى تتحقق أن الصوت إنتهى عشان مايتكرر الصوت لو مات اكثر من مره ورا بعضها + getSoundPosition getSoundLength Link to comment
jafar Posted May 25, 2014 Share Posted May 25, 2014 isSoundFinished للتحقق من إن صوت أنتهت function Syntax bool isSoundFinished( element theSound ) Function Source function isSoundFinished ( theSound ) local length = getSoundLength( theSound ) local post = getSoundPosition( theSound ) if (post==length) then return true else return false end end مثال theSound = playSound("music/song.mp3") function checkSongFinish() local finish = isSoundFinished(theSound) if(finish == true) then outputChatBox("الانتهاء من الصوت!") else outputChatBox("لم يتم الانتهاء من الصوت!") end end addCommandHandler("checkfinish", checkSongFinish) Wiki https://wiki.multitheftauto.com/wiki/IsSoundFinished 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