AR/aclGetName

From Multi Theft Auto: Wiki
Revision as of 10:14, 28 April 2020 by ^iiEcoo'x ) (talk | contribs) (Created page with "__NOTOC__ {{Server function}} تقوم بجلب الإسم الخاص بالأسل . ==تركيب الوظيفة :== <syntaxhighlight lang="lua"> string aclGetName ( acl t...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

تقوم بجلب الإسم الخاص بالأسل .

تركيب الوظيفة :

string aclGetName ( acl theAcl )

العناصر المطلوب :

  • theACL: الأسل المطلوب جلب الإسم الخاص به

المعطليات :

إذا كان الأسل غير موجود أو أحد العناصر المطلوبة خاطئة false \ nil تقوم بإرجاع إسم الإسل , و تقوم بإرجاع قيمة

أمثلة :

This example adds a command listacls which prints out a name list of all ACLs to the console.

function printOutAllACLs ( thePlayer )
    -- get a table over all the ACLs
    local allACLs = aclList()
    -- if the table is empty (there are no ACLs)
    if #allACLs == 0 then
        -- print out a message to console and exit function
        return outputConsole ( "There are no ACLs!", thePlayer )
    else
        -- print out a list of the names
        outputConsole ( "List of all ACLs:", thePlayer )
        for key, singleACL in ipairs ( allACLs ) do
            local ACLName = aclGetName ( singleACL )
            outputConsole ( "- " .. tostring ( ACLName ), thePlayer )
        end
   end
end
addCommandHandler ( "listacls", printOutAllACLs )

تمت إعادة الترجمة و الإضافة من قبل : ^iiEcoo'x_)

See Also