AR/aclGroupList: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Server function}} كاملة موضوعة في جدول acl.xml تقوم هذه الوظيفة بإرجاع جميع القروبات الموجود في ملف...")
 
No edit summary
Line 27: Line 27:
==See Also==
==See Also==
<!-- Change FunctionArea to the area that this function is in on the main function list page, e.g. Server, Player, Vehicle etc -->
<!-- Change FunctionArea to the area that this function is in on the main function list page, e.g. Server, Player, Vehicle etc -->
{{ACL_functions}}
{{AR/ACL_functions}}

Revision as of 10:29, 28 April 2020

كاملة موضوعة في جدول acl.xml تقوم هذه الوظيفة بإرجاع جميع القروبات الموجود في ملف .

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

table aclGroupList ()

المعطيات :

وقد يكون الجدول فارغاً اذا لم تتوافر أي قروبات acl.xml تقوم بإرجاع جدول يحتوي على كامل القروبات الموجودة في ملف إذا كان هناك خطأ آخر false \ nil ويقوم بإرجاع قيمة

أمثلة :

This example shows, how to output all ACL Group Names by showAclGroups

function showGroups(player)
	local groups = {}
	groups = aclGroupList()
	for i,v in ipairs(groups) do
		local name = aclGroupGetName(v)
		outputChatBox(tostring(name),player)
	end
end
addCommandHandler("showAclGroups",showGroups)

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

See Also