Jump to content

محتاج مساعده بصنع توقيت


Recommended Posts

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

يا اخوان محتاج مساعده

بصنع توقيت

الي كل 10 دقائق ازا كتبت انتقال ينتقل للمكان

ازا قبل ما يخلصو ال10 دقائق ما ينتقل

يعني زي مسابقه

كل 10 دقائق تبداء

مثل الديربي

كيف اسوي هالشي ؟

Link to comment

  
addCommandHandler("warp", 
function(plr) 
outputChatBox("يرجي الانتظار 10 دقائق للانتقال",p,255,0,0) 
   setTimer(function() 
     setElementPosition( p , X,Y,Z ) 
     outputChatBox("تم الانتقال", p, 0,255,0) 
   end,10*60000,1) 
end) 
  
  
Link to comment
  
addCommandHandler("warp", 
function(plr) 
outputChatBox("يرجي الانتظار 10 دقائق للانتقال",p,255,0,0) 
   setTimer(function() 
     setElementPosition( p , X,Y,Z ) 
     outputChatBox("تم الانتقال", p, 0,255,0) 
   end,10*60000,1) 
end) 
  
  

local Table = { } 
     
addCommandHandler("warp", 
  
    function ( plr ) 
  
    if Table [ plr ] and isTimer ( Table [ plr ] )  then return  
  
    outputChatBox("يرجي الانتظار 10 دقائق للانتقال",plr ,255,0,0) 
  
    end 
  
    Table [ plr ] = setTimer( function ( ) 
  
    setElementPosition( plr  , x ,y ,z ) 
  
    outputChatBox ("تم الانتقال", plr , 0,255,0) 
  
    end,10*60000,1) 
end 
    ) 
Edited by Guest
Link to comment

اخوي انا اتوقع انك المفروض تضيف END ثانيه

في السطر 12 لتهي الفانكشن زي ما تقولو ولكن اللي اعرفه ان اسمه فاكشون مو مهم

هذي كانت مشاركتي وسامحني اذا تعديت حدودي وزعلت ولا شي اخهوي اتمنى تستمتع

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