Jump to content

تصحيح كود صوت عند تشغيل المود


Recommended Posts

شباب كل مااجي اشغل المود يقول الكود فيه خطأ

وين الخطأ هنا

addEventHandler( "onResourceStart", root ) 
function sound (  )  
        local sound = playSound("1.mp3") 
         
        end) 
  
     
addEventHandler( "onResourceStop", root ) 
function (  )  
 if ( ( sound ) and ( isElement ( sound ) ) ) then 
         destroyElement ( sound ) 
   end  
) 

Link to comment

سيرفر onResourceStop,onResourceStart الأحداث

إستخدم

onClientResourceStart

+ ما يحتاج تشيل الصوت لمن يوقف المود لأنه راح يتشال تلقائي

+ إنت مسوي الفنكشن داخل الحدث و مسميه

+ وبعد الفنكشن root مقفل الحدث بعد

Link to comment
addEventHandler( "onClientResourceStart", resourceRoot, 
function  ( ) 
        local sound = playSound("1.mp3")   
        end 
) 

تسلم ,

بس ليش لما اجي بشغل المود يشتغل 100 % بس مايطلع صوت ؟؟؟

meta --

     
"AhmedSmood" type="script" name="Sound" version="1.0"/> 
     

+

متأكد ان اسم الملف

1.mp3 :roll:

Link to comment

جرب ذا

addEventHandler("onClientResourceStart",resourceRoot, 
function () 
sound = playSound("1.mp3") 
end) 
  
    
addEventHandler("onClientResourceStop",resourceRoot, 
function () 
 if ( ( sound ) and ( isElement ( sound ) ) ) then 
destroyElement ( sound ) 
 end) 
Link to comment
جرب ذا

addEventHandler("onClientResourceStart",resourceRoot, 
function () 
sound = playSound("1.mp3") 
end) 
  
    
addEventHandler("onResourceStop",resourceRoot, 
function () 
 if ( ( sound ) and ( isElement ( sound ) ) ) then 
destroyElement ( sound ) 
 end) 

ناحية الكود تمت الإفادة ,

بس مشكلة الصوت لحين :?

Link to comment
جرب ذا

addEventHandler("onClientResourceStart",resourceRoot, 
function () 
sound = playSound("1.mp3") 
end) 
  
    
addEventHandler("onClientResourceStop",resourceRoot, 
function () 
 if ( ( sound ) and ( isElement ( sound ) ) ) then 
destroyElement ( sound ) 
 end) 

ناحية الكود تمت الإفادة ,

بس مشكلة الصوت لحين :?

جرب هذا يمكن يشغله

local عشان اتوقع الي قبل ماشتغل بسبب

Link to comment
جرب ذا

addEventHandler("onClientResourceStart",resourceRoot, 
function () 
sound = playSound("1.mp3") 
end) 
  
    
addEventHandler("onClientResourceStop",resourceRoot, 
function () 
 if ( ( sound ) and ( isElement ( sound ) ) ) then 
destroyElement ( sound ) 
 end) 

مايحتاج أخر وظيفة

لأن الصوت ببند تلقائي .. :mrgreen:

Link to comment
جرب ذا

addEventHandler("onClientResourceStart",resourceRoot, 
function () 
sound = playSound("1.mp3") 
end) 
  
    
addEventHandler("onClientResourceStop",resourceRoot, 
function () 
 if ( ( sound ) and ( isElement ( sound ) ) ) then 
destroyElement ( sound ) 
 end) 

اعتقد في كود إيقاف المود

if في اند ناقصة لــ

+

مثل ماقال جعفر

:idea:

Link to comment
جرب ذا

addEventHandler("onClientResourceStart",resourceRoot, 
function () 
sound = playSound("1.mp3") 
end) 
  
    
addEventHandler("onClientResourceStop",resourceRoot, 
function () 
 if ( ( sound ) and ( isElement ( sound ) ) ) then 
destroyElement ( sound ) 
end 
 end) 

اعتقد في كود إيقاف المود

if في اند ناقصة لــ

+

مثل ماقال جعفر

:idea:

< تعبان كثير مشكل كثير

سو الي صح وسوه بدون لوكال وجرب لأن اتوقع المشكله منه

"جمعه مباركه للجميع" :mrgreen:

Link to comment
جرب ذا

addEventHandler("onClientResourceStart",resourceRoot, 
function () 
sound = playSound("1.mp3") 
end) 
  
    
addEventHandler("onClientResourceStop",resourceRoot, 
function () 
 if ( ( sound ) and ( isElement ( sound ) ) ) then 
destroyElement ( sound ) 
end 
 end) 

اعتقد في كود إيقاف المود

if في اند ناقصة لــ

+

مثل ماقال جعفر

:idea:

< تعبان كثير مشكل كثير

سو الي صح وسوه بدون لوكال وجرب لأن اتوقع المشكله منه

"جمعه مباركه للجميع" :mrgreen:

شلت اللوكال , ما ضبط

:lol::lol:

Link to comment

الأكواد الي فوق مالها داعي

أفتح ملف الكلينت و حطه فيه ذا الكود لحاله وبس

playSound("1.mp3") 

إذا ما اشتغل يعني ملف الصوت حقك خربان أو اسمه غير او صيغته غير او في خطأ بملف الميتا

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