getAgeFromShoeSize
Client and Server Fucntion
احظار العمر من مقاس الحذاء
Syntax :
int getAgeFromShoeSize(int ShoeSize, int CCY, int DOB)
ShoeSize : Shoe Size || حجم الحذاء
CCY : Current Calendar year || التاريخ الميلادي الحالي
DOB : Date of birth 'Calendar year' || تاريخ الولادة بالميلادي
Returns
Returns Age if the arguments are valid, false otherwise
اذا كانت الارقمنات خطأ false يرجع القيمة الى العمر اذا كانت الارقمنات صحيحة ويرجع القيمة
Function Code :
function getAgeFromShoeSize(ShoeSize, CCY, DOB)
if not tonumber(ShoeSize) or not tonumber(CCY) or not tonumber(DOB) then
return false
end
local AI = CCY - 1000
local Age = (((ShoeSize * 5) + 50) * 20 + AI) - DOB
return tonumber(string.sub(tostring(Age), 3))
end
Example :
print(getAgeFromShoeSize(45, 2015, 1997))
Mta : Client Side
addCommandHandler("GAFSS", function(_, ShoeSize, DOB)
if not tonumber(ShoeSize) or not tonumber(DOB) then
return outputChatBox("GAFSS: Syntax (Your Shoe Size, Date of birth)", 255, 155, 0)
end
outputChatBox(getAgeFromShoeSize(ShoeSize, 1900 + getRealTime( ).year , DOB))
end)