Jump to content

مهم .....


Recommended Posts

انا مسوي لوحة يضغط على زر يعطيه قارب لمدة 5 دقايق

وينسحب ابغى الوقت بطلع على الشاشة

الوقت يجي تنازلي

الطريقة ؟؟؟

شرح مفصل افهم

i = math.ceil( 23.53 ) 
print( i ) -- 23 يعطيك الرقم 

او استخدم هذا الفنشكن

function convertMilliseconds( i ) 
    if ( i ) then 
        sec = math.fmod( math.floor( i / 1000 ), 60 ) 
        min = math.floor( math.floor( i / 1000 ) / 60 ) 
        return string.format( '%02d:%02d', min, sec ) 
    end 
end 

مثال عليه

Timer = setTimer( 
    function( ) 
        givePlayerMoney( getRootElement( ), 1000 ) 
    end, 40000, 0 
) 
  
addCommandHandler( 'timer', 
    function( playerSource ) 
        if isTimer( Timer ) then 
            local TimeLeft = convertMilliseconds( getTimerDetails( Timer ) )  
            outputChatBox( TimeLeft ..' بقي من الوقت للتوزيع !', playerSource, 255, 255, 0, true ) 
        end 
    end 
) 

راح يظهر لك الوقت كذا

00:36 بقي من الوقت للتوزيع !
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...