AR/aclGetName: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Server function}} تقوم بجلب الإسم الخاص بالأسل . ==تركيب الوظيفة :== <syntaxhighlight lang="lua"> string aclGetName ( acl t...")
 
mNo edit summary
 
Line 38: Line 38:
==See Also==
==See Also==
{{AR/ACL_functions}}
{{AR/ACL_functions}}
[[ar:aclGetName]]
[[en:AclGetName]]
[[zh-cn:AclGetName]]

Latest revision as of 18:23, 21 February 2021

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

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

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