Jump to content

طلب كود اذا ممكن


Recommended Posts

لي معرفة الوقت ~

  
function showtime () 
    local time = getRealTime() 
    local hours = time.hour 
    local minutes = time.minute 
    local minutes = time.second 
  
    outputChatBox ( "Local Time: "..hours..":"..minutes..":"..second ) 
end 
  addCommandHandler("show", showtime ) 
  

لي معرفة السنة/الشهر

  
  
  
  
  
  
function showtime () 
    local time = getRealTime() 
    local hours = time.year 
    local minutes = time.month 
    local minutes = time.monthday  
  
    outputChatBox ( "Local Time: "..year..":"..month..":"..monthday ) 
end 
 addCommandHandler("show", showtime ) 
  

اذا اردت معرفة اليوم والشهر اوالخ ..ـ

اكتب في اف 8

show

Link to comment

لي معرفة السنة/الشهر

  
  
  
  
  
  
function showtime () 
    local time = getRealTime() 
    local hours = time.year 
    local minutes = time.month 
    local minutes = time.monthday  
  
    outputChatBox ( "Local Time: "..year..":"..month..":"..monthday ) 
end 
 addCommandHandler("show", showtime ) 
  

اذا اردت معرفة اليوم والشهر اوالخ ..ـ

اكتب في اف 8

show

Wrong

function showtime () 
     local time = getRealTime() 
     local year = time.year 
     local month = time.month 
     local monthday  = time.monthday  
     outputChatBox("Date: "..year..":"..month..":"..monthday) 
end 
addCommandHandler("show", showtime) 

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