Jump to content

عند حدوث شيئ يطلع صوت ؟


mr.ekoo

Recommended Posts

إذا كنت تبيه صوت من اللعبة يصير كذآ ,

-- Client Side !

addEventHandler ( "onClientGUIClick", root, 
    function ( ) 
        for k, v in ipairs ( getElementsByType ( "gui-button" ) ) do 
            if source == v then 
                playSoundFrontEnd ( 20 ) 
            end 
        end 
    end 
) 

إذا تبي تغير الصوت حق اللعبة , غير رقم 20 الي بالسطر الخامس إلى رقم الصوت الي تبيه

واذا تبي تعرف الأصوات و أرقآمهآ ادخل هنا : https://wiki.multitheftauto.com/wiki/PlaySoundFrontEnd

=================================

أما إذا تبيه صوت من عندكـ يصير كذآ ,

-- Client Side !

addEventHandler ( "onClientGUIClick", root, 
    function ( ) 
        for k, v in ipairs ( getElementsByType ( "gui-button" ) ) do 
            if source == v then 
                playSound ( "NameSound" ) 
            end 
        end 
    end 
) 

الإستبدآل في السطر الخامس فقط ,

NameSound = اسم الصوت مع صيغته / مثآل : Sound.mp3

^ ولازم تضيف اسم الصوت مع صيغته بملف ميتا ,

<file src="Sound.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...