Jump to content

آلكود صحيح آمم لآ .. math.random


Recommended Posts

آلسلآمم عليكمم

هل آلكود صحيح آم لآ ,

آبغآهه لمآ يموت آلآعب يشغل صوت وإذآ مرةة ثآنيةة مآت يجيبلهة صوت ثآني ..

addEventHandler("onClientPlayerWasted", root, 
function() 
    local sounds = math.random(x1.mp3,x2.mp3) 
    playSound("sounds",true) 
end 
) 
Link to comment

شوف هالمثال طريقتي مجرد شرح لول لاتاخذها خخ :

addCommandHandler("sound", 
    function (  ) 
    local RandomSounds = math.random ( 1,2 )  
        if isElement ( sound ) then 
            stopSound ( sound ) 
        end 
            if ( RandomSounds == 1 ) then 
                sound = playSound ( "1.mp3" ) 
    else 
            sound = playSound ( "2.mp3" ) 
    end 
end 
) 

طويلة الطريقة جداول اصرف

Link to comment

شوف هالمثال للجداول :

local aSounds = { 
        "File", 
        "File", 
        "File" 
} 
  
  
addCommandHandler("PlaySound", 
function ( ) 
    if isElement ( sound ) then  
        destroyElement ( sound ) 
    end 
            sound = playSound ( aSounds[math.random(#aSounds)] , true ) -- نجيب كل قيم الجدول بـ # ونسويها راندوم  عشوائيةة 
    end 
) 

Link to comment

كذا مو أحسن ذذ

addCommandHandler( 'sound', function(  ) 
    local RandomSounds = math.random ( 1,2 ) 
    if isElement ( sound ) then 
        stopSound ( sound ) 
    end 
    sound = playSound ( RandomSounds..'.mp3' ) 
end ) 

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