Jump to content

مشكله بكود وطلب كود!


Recommended Posts

السلام عليكم

اما بعد

عندي مشكله بالكود ذا مايغير شخصيه ولا يعيد اذا مات بعد 15 ثانيه

ولا ياخذ سلاح ولو مات مايروح المكان

    local firstTeamWeapon1 = 32    -- السلاح الاول للتيم الاول 
    local firstTeamWeapon2 = 32    -- السلاح الثاني للتيم الاول 
    local firstTeamWeapon3 = 32    -- السلاح الثالث للتيم الاول 
    local firstTeamModel = 18 -- اي دي شخصيه التيم الاول 
    local secondTeamWeapon1 = 32   -- السلاح الاول للتيم الثاني 
    local secondTeamWeapon2 = 32   -- السلاح الثاني للتيم الثاني 
    local secondTeamWeapon3 = 32   -- السلاح الثالث للتيم الثاني 
    local secondTeamModel = 18    -- اي دي شخصيه التيم الثآني 
      
      
      
        addEventHandler("onPlayerWasted", root, 
        function() 
            outputChatBox( "Wait 15 seconds.", source, 255, 255, 0, true ) 
            local Team = getPlayerTeam( source ) 
            if Team then 
                if Team == getTeamFromName("team 1") then 
                    setTimer( spawnPlayer, 15000, 1, source, 2065.4340820313, 1540.9486083984, 10.671875) 
                    setTimer( setElementModel, 15000, 1, source, firstTeamModel ) 
        setTimer( giveWeapon,15000,1, source, firstTeamWeapon1, 30, true ) 
        setTimer( giveWeapon,15000,1, source, firstTeamWeapon2, 30, true ) 
        setTimer( giveWeapon,15000,1, source, firstTeamWeapon3, 30, true ) 
          
        setTimer( giveWeapon,15000,1, source, secondTeamWeapon1, 30, true ) 
        setTimer( giveWeapon,15000,1, source, secondTeamWeapon2, 30, true ) 
        setTimer( giveWeapon,15000,1, source, secondTeamWeapon3, 30, true ) 
                elseif Team == getTeamFromName( "team 2" ) then 
                    setTimer( spawnPlayer, 15000, 1, source, 316.18728637695, -1774.7113037109, 4.764039516449 ) 
        setTimer( giveWeapon,15000,1, firstTeamWeapon1, 30, true ) 
        setTimer( giveWeapon,15000,1, firstTeamWeapon2, 30, true ) 
        setTimer( giveWeapon,15000,1, firstTeamWeapon3, 30, true ) 
          
        setTimer( giveWeapon,15000,1, secondTeamWeapon1, 30, true ) 
        setTimer( giveWeapon,15000,1, secondTeamWeapon2, 30, true ) 
        setTimer( giveWeapon,15000,1, secondTeamWeapon3, 30, true ) 
                end 
            else 
                setTimer( spawnPlayer, 15000, 1, source, 2065.4340820313, 1453.8991699219, 10.671875 ) 
            end 
        end 
        ) 

الكود الثاني طلبي

ابي لما يقت يطلع له صوت مثلا 5 اصوات

كل مايقتل يتغير الصوت

وثانكس لكم جميعا

Link to comment
   local firstTeamWeapon1 = 32    -- السلاح الاول للتيم الاول 
    local firstTeamWeapon2 = 32    -- السلاح الثاني للتيم الاول 
    local firstTeamWeapon3 = 32    -- السلاح الثالث للتيم الاول 
    local firstTeamModel = 18 -- اي دي شخصيه التيم الاول 
    local secondTeamWeapon1 = 32   -- السلاح الاول للتيم الثاني 
    local secondTeamWeapon2 = 32   -- السلاح الثاني للتيم الثاني 
    local secondTeamWeapon3 = 32   -- السلاح الثالث للتيم الثاني 
    local secondTeamModel = 18    --  

مادام أنك حاط هذي نفس الايد ، ليه مكررها؟

والكود الواضح أنه مافيه خطأ تأكد أنك حاطه سيرفر

عشان يشتغل 'team 1' او 'team 2' لازم تكون في تيم

Link to comment

طلبك الثآني ..

sounds = { 'sound1.mp3', 
    'sound2.mp3', 
    'sound3.mp3', 
    'sound4.mp3', 
    'sound5.mp3' 
} 
  
addEventHandler("onClientPlayerWasted", localPlayer,  
    function ( killer, weapon, bodypart ) 
        playSound( sounds[math.random(1, #sounds)] ) 
    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...