3ssol Posted April 24, 2013 Share Posted April 24, 2013 السلام عليكم شباب سويت الساعه بـ الـ getRealTime وماتجي الساعه صحيحه مثلا عندنا الساعه 1 تصير بـ getRealTime تكون مثلا 2 يعني متقدمه عننا بـ ساعه فـ كيف اخليها نفسنا + هل يصير اني اخليه مثلا الحين بعض الاحيان تكون الساعه بـ getRealTime اذا تعدت الـ 12 راح تصير 13 و14 الي الاخر انا ابيها اذا صارت 12 ترجع 1 وكذا وان شالله فهمتو Link to comment
iMr.Dawix~# Posted April 24, 2013 Share Posted April 24, 2013 اذا كان متقدم ب ساعه خله يجيب الوقت ك رقم في لبل او دي اكس واذا طلع الرقم ينقص من الرقم واحد واذا الساعه = 13 خله يفهمها انه يحط بدالها 1 Link to comment
|Mr|-Talal07-| Posted April 24, 2013 Share Posted April 24, 2013 استخدم ذي function RealHour(h) if h > 12 then return h - 12 else return h end end Link to comment
3ssol Posted April 24, 2013 Author Share Posted April 24, 2013 ثانكس طلال بس ماقلتولي الحين الوقت متقدم عن الساعه الحقيقيه وش الحل؟ Link to comment
PaiN^ Posted April 25, 2013 Share Posted April 25, 2013 هذا لأن التوقيت يختلف من مكان لثاني يبغالك تسوي معالجة للوقت, مثلا لو الوقت زايد بساعة تسوي كذا function convertTime ( Time ) return Time - 1 end ولو ساعتيين كذا function convertTime ( Time ) return Time - 2 end ولو ناقص ساعة زي كذا function convertTime ( Time ) return Time + 1 end Link to comment
3NAD Posted April 25, 2013 Share Posted April 25, 2013 PAIN عندي فكرة لـ وظيفة لم يتم التجربة .. Enad_ = { ["Saudi Arabia"] = 1; -- [ Country ] = hours; }; function convertTime ( player, time ) if player and time then local Country = exports.admin: getPlayerCountry ( player ) if Country then if Enad_ [ Country ] then return outputChatBox ( time - Enad_ [ Country ] ) else return outputChatBox ( time ) end else return outputChatBox ( time ) end else return false end end Link to comment
Tete omar Posted April 25, 2013 Share Posted April 25, 2013 وليش بدل ما تتعبوا انفسكم, تنقصوا من ال hours 12 ?? مثل كذا time = getRealTime() local hours = time.hour-12 ملاحظة : الوظيفة تعتمد على وقت جهازك اذا كانت بالكلنت اما اذا كانت بالسيرفر فتعتمد على وقت السيرفر وفقاً للشرح : This function gets the real server time and returns it in a table Link to comment
Tete omar Posted April 25, 2013 Share Posted April 25, 2013 اممممـ .. يمكن لو كان الكود بـ جانب سيرفر راح يجلب وقت الخادم نفسهاما لو كان كلنت على جهاز اللاعب .. < ماني متأكد من الكلام صح كلامك 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