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

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.

  • string|false: acl group name

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)