Jump to content

صوت بعد وقت , أرجو الآفآدة


Recommended Posts

السلآلآم عليككم ورحمة الله وبركآته

بسم الله الرحمن الرحيم

بغيت تعديل ذآ الكود أبيه له تآيمر يبدا بعد 5 دقايق ويقفل بعد 10 ثواني

function onResourceStart() 
    local sound = playSound3D("alarm.mp3", 373.14, -125.21, 1001, true)  
end 
addEventHandler("onClientResourceStart", getResourceRootElement(getThisResource()), onResourceStart) 

ألله يوفق من يفيدني x12793985341.png.pagespeed.ic.mCcwxeMi0k.png

Link to comment
local sound 
  
function playAlaram ( startInterval, endInterval, posX, posY, posZ ) 
    setTimer ( 
        function ( ) 
            sound =  playSound3D ( "alarm.mp3",  posX, posY, posZ, true ) 
            setTimer ( 
                function ( ) 
                       stopSound ( sound ) 
                       sound = nil 
                end, endInterval, 1 
            ) 
        end, startInterval, 1 
    ) 
end 
  
playAlarm ( 18000000, 10000, 373.14, -125.21, 1001 ) 

الاستخدام:

playAlarm ( int startInterval, int endInterval, float posX, float posY, float posZ ) 

  • startInterval: وقت البداية في ملي ثانية
  • endInterval: وقت النهاية في ملي ثانية
  • posX: x الاحداثيات
  • posY: y الاحداثيات
  • posZ: z الاحداثيات

بهذا الشكل يمديك تسوي الارم في اي مكان تبي

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