NAPI.ACL.GetPlayerAclGroup

From RAGE Multiplayer Wiki
Revision as of 09:07, 27 November 2019 by Xabi (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Get the ACL group for the given player.

Syntax

string NAPI.ACL.GetPlayerAclGroup(Client player);

Required Arguments

  • player: parameter input should be in Client type

Example

C# Syntax

Parameters

  • player: parameter input should be in Client type

Example

string group = NAPI.ACL.GetPlayerAclGroup(player);
player.SendChatMessage($"My group is {group}.");