Jump to content

تحت التطوير :كود - Useful Arab functions


Booo

Recommended Posts

وظيفة تقوم بارجاع الوقت الحقيقي وتحويله من 24 ساعة الى 12 ساعة

The function returns real time with convert 24h to 12h

Shared function

string getTime( ) 

function getTime( ) 
    local time = getRealTime( ) 
    local h, m = time.hour, time.minute 
    return (h % 12 and h % 12 or 12)..":"..(m < 10 and "0"..m or m).." "..(h >= 12 and "PM" or "AM") 
end 

Link to comment

وظيفة تقوم بارجاع الوقت الحقيقي وتحويله من 24 ساعة الى 12 ساعة

The function returns real time with convert 24h to 12h

Shared function


function getTime( )
    local time = getRealTime( )
    local h, m = time.hour, time.minute
    return (h % 12 and h % 12 or 12)..":"..(m < 10 and "0"..m or m).." "..(h >= 12 and "PM" or "AM")
end

مش فاهم : |

كيف تحوله 24 ل 12 ساعة؟

Link to comment

وظيفة تقوم بارجاع الوقت الحقيقي وتحويله من 24 ساعة الى 12 ساعة

The function returns real time with convert 24h to 12h

  
local Tn6el = { 
"كفو", 
"مبدع", 
"اسطورة", 
"محترف", 
"كنننننققققق", 
"موديييييييررر", 
"الكبببببيييير", 
"معلمهم", 
 } 
  
for k,v in ipairs (Tn6el) do 
  print ( v ) 
end 
  

Link to comment
وظيفة تقوم بارجاع الوقت الحقيقي وتحويله من 24 ساعة الى 12 ساعة

The function returns real time with convert 24h to 12h

  
local Tn6el = { 
"كفو", 
"مبدع", 
"اسطورة", 
"محترف", 
"كنننننققققق", 
"موديييييييررر", 
"الكبببببيييير", 
"معلمهم", 
 } 
  
for k,v in ipairs (Tn6el) do 
  print ( v ) 
end 
  

منور، فكرة ورد جميل

وظيفة قميلة قدا :$

منور ياقدع

Link to comment

وظيفة تقوم بارجاع الوقت الحقيقي وتحويله من 24 ساعة الى 12 ساعة

The function returns real time with convert 24h to 12h

Shared function


function getTime( )
    local time = getRealTime( )
    local h, m = time.hour, time.minute
    return (h % 12 and h % 12 or 12)..":"..(m < 10 and "0"..m or m).." "..(h >= 12 and "PM" or "AM")
end

فنكشن كويس زي الفل

لكن افضل لك تغير اسمه عشان مايتبدل مع الفنكشن الي باللعبة #

بالتوفيق :fadein:

Edited by Guest
Link to comment

وظيفة رائعه :mrgreen:

كلامي نفس لوس

لو اجا يسوي شي بوظيفتك

اكيد ارقمنتات الوظيفة الاصلية غير الوظيفة المفيدة

رح يظهر بالدي بق

باد ارقمنت

يرجي تغير اسم الوظيفة :fadein:

Link to comment
وظيفة رائعه :mrgreen:

كلامي نفس لوس

لو اجا يسوي شي بوظيفتك

اكيد ارقمنتات الوظيفة الاصلية غير الوظيفة المفيدة

رح يظهر بالدي بق

باد ارقمنت

يرجي تغير اسم الوظيفة :fadein:

مافي اي ارقمنت بكل الفنكشنين ، بس اقصد الارجاع او القيمة الي بترجع لك #

Link to comment
وظيفة رائعه :mrgreen:

كلامي نفس لوس

لو اجا يسوي شي بوظيفتك

اكيد ارقمنتات الوظيفة الاصلية غير الوظيفة المفيدة

رح يظهر بالدي بق

باد ارقمنت

يرجي تغير اسم الوظيفة :fadein:

مافي اي ارقمنت بكل الفنكشنين ، بس اقصد الارجاع او القيمة الي بترجع لك #

امم

انا ما استخدمته ولا مرا

فكرت به ارقمنتات

Link to comment

table.sect

تقوم الوظيفة بتقسيم الجدول حسب الطلب بسكين بمشرط على كيفك :twisted:

table table.sect(table, foreach_s) 

table : الجدول المراد تقسيمه

foreach_s : عدد العناصر لكل قسم مثلا "ثلاثة عناصر لكل قسم"..وهكذا

Function Code :

function table.sect(t, i) 
    local a, b, c = 1, { }, 0 
    if math.modf(i) == i and i ~= 0 then 
        for k, v in ipairs(t) do 
            c = c+1 
            if c > i then a, c = a+1, 1 end 
            if not b[a] then b[a] = { } end 
            table.insert(b[a], v) 
        end 
    end 
    return b 
end 

Example :

t = {"Hello 1", "Hello 2", "Hello 3", "Hello 4", "Hello 5", "Hello 6", "Hello 7", "Hello 8", "Hello 9", "Hello 10"} 
  
for k, v in ipairs(table.sect(t, 2)) do 
        print("__") -- lines between each section 
    for k, _v in ipairs(v) do -- section table 
        print(_v) -- print section values 
    end 
end 
--[[Output(Result) :  
__ 
Hello 1 
Hello 2 
__ 
Hello 3 
Hello 4 
__ 
Hello 5 
Hello 6 
__ 
Hello 7 
Hello 8 
__ 
Hello 9 
Hello 10 
]] 

Note : I will kill you, when didn't use my useful function

You will see the evil coming soon

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