GetPlayerAclGroup
Внешний вид
Get the ACL group for the given player.
string NAPI.ACL.GetPlayerAclGroup(Client player);
Parameters
- player: parameter input should be in Client type
Example
<syntaxhighlight lang="csharp"> string group = NAPI.ACL.GetPlayerAclGroup(player); player.SendChatMessage($"My group is {group}."); </syntaxhighlight>