^iiEcoo'x_) Posted April 25, 2017 Share Posted April 25, 2017 السلام عليكم ، ودي شرح بسطي عن ودي شرح بسيط عنهم الله لا يهينكم return false و return true شفت في اغلب الوظائف المفيدة return القيمة ، Link to comment
#Soking Posted April 25, 2017 Share Posted April 25, 2017 وظيفتها ترجع لك بالقيمه مثلا function return_ ( ) aTable = { } return aTable end يرجع لك ب تيبل مادري كيف اشرحها Link to comment
' A F . Posted April 25, 2017 Share Posted April 25, 2017 local value = 10 function returnValue ( ) return ( value == 10 and "Yes" or "No" ) end outputChatBox ( tostring(returnValue()) ) -- result Yes لو تجرب المثال تفهمه او تركز بالمثال تفهمه بسرعة 1 Link to comment
N3xT Posted April 25, 2017 Share Posted April 25, 2017 بإختصار ترجع لك قيمة, مثل أي فنكشن يرجع لك قيمة 1 Link to comment
^iiEcoo'x_) Posted April 26, 2017 Author Share Posted April 26, 2017 شكرا للجميع , بس ما فهمت بشكل واضح , شوفوا الريتورن هنا * function isTextInGridList(gridlist, text) for i=0, guiGridListGetRowCount(gridlist)-1 do local t = guiGridListGetItemText(gridlist, i, 1) if (t) then if (t == text) then return true end end end return false end Link to comment
iMr.WiFi..! Posted April 26, 2017 Share Posted April 26, 2017 function isTextInGridList(gridlist, text) -- نسوي فنكشن for i=0, guiGridListGetRowCount(gridlist)-1 do -- نسوي لوب ونجلب عدد الروات الي في الجريد ليست ونطرحها على ثنين local t = guiGridListGetItemText(gridlist, i, 1) -- نجلب التكست من الجريد ليست باستخدام اللوب أي انه راح يلف على جميع الروات الموجودة في الجريد ليست if (t) then -- نتحقق انه نجحت عملية البحث if (t == text) then -- نتحقق انه في رو موجود بأسم التكست الي كتبه في الفنكشن return true -- نرجع القيمة ترو, عشان تكمل التحقق لما تستخدمه end -- اند لل تحقق t == text end -- end , t end -- end loob return false -- نرجع القيمة فولس اذا مازبط البحث end -- end , function Link to comment
Master_Ali Posted April 26, 2017 Share Posted April 26, 2017 37 minutes ago, #_iMr.[E]coo said: شكرا للجميع , بس ما فهمت بشكل واضح , شوفوا الريتورن هنا * function isTextInGridList(gridlist, text) for i=0, guiGridListGetRowCount(gridlist)-1 do local t = guiGridListGetItemText(gridlist, i, 1) if (t) then if (t == text) then return true end end end return false end شف يقلبي هنا يجيب كل الكلام اللي بالجريد لست لو اي واحد من الكلام اللي بالجريد لست=النص او السترنج اللي انت حاطه بالفنكشن راح يرجعلك بالقيمة true لو خلص اللوب ومافي اي شي بيرجعلك القيمه false فهمت علي؟ 1 minute ago, iMr.WiFi..! said: function isTextInGridList(gridlist, text) -- نسوي فنكشن for i=0, guiGridListGetRowCount(gridlist)-1 do -- نسوي لوب ونجلب عدد الروات الي في الجريد ليست ونطرحها على ثنين local t = guiGridListGetItemText(gridlist, i, 1) -- نجلب التكست من الجريد ليست باستخدام اللوب أي انه راح يلف على جميع الروات الموجودة في الجريد ليست if (t) then -- نتحقق انه نجحت عملية البحث if (t == text) then -- نتحقق انه في رو موجود بأسم التكست الي كتبه في الفنكشن return true -- نرجع القيمة ترو, عشان تكمل التحقق لما تستخدمه end -- اند لل تحقق t == text end -- end , t end -- end loob return false -- نرجع القيمة فولس اذا مازبط البحث end -- end , function شف الديسكورد Link to comment
Master_Ali Posted April 26, 2017 Share Posted April 26, 2017 2 minutes ago, #_iMr.[E]coo said: شكرا لكم جميعا العفو بالتوفيق تم استبعادك من b.l team 1 Link to comment
^iiEcoo'x_) Posted April 26, 2017 Author Share Posted April 26, 2017 Just now, Master_Ali said: العفو بالتوفيق تم استبعادك من b.l team ?????????????????????????? حبيب قلبي 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