aclGroupGetName | Multi Theft Auto: Wiki Skip to content

aclGroupGetName

Client-side
Server-side
Shared

This function is used to get the name of the given ACL group.

OOP Syntax Help! I don't understand this!

  • Method: aclgroup:getName(...)
  • Variable: .name

Syntax

string|false aclGroupGetName ( aclgroup theGroup )
Required Arguments
  • theGroup: The ACL group to get the name of.

Returns

  • string|false: acl group name

Returns the name of the given ACL group as a string if successful, otherwise false or nil if the aclGroup is invalid or it fails for some other reason.

Code Examples

server

This example outputs to the console that Admin's are ready to watch :).

addEventHandler("onResourceStart", resourceRoot, function()
outputConsole(aclGroupGetName(aclGetGroup("Admin")).."'s are ready to watch :)",root)
end)