Black~Angel~KSA Posted April 28, 2012 Share Posted April 28, 2012 اذا ممكن ابي كود السنه و الشهر و اليوم Link to comment
X-SHADOW Posted April 28, 2012 Share Posted April 28, 2012 https://wiki.multitheftauto.com/wiki/GetRealTime Link to comment
xTeacherx Posted April 29, 2012 Share Posted April 29, 2012 لي معرفة الوقت ~ 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
TAPL Posted April 29, 2012 Share Posted April 29, 2012 لي معرفة السنة/الشهر 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
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now