Reverse Lookup (`/realname`)
Because players can rename themselves, staff need a way to find whoβs behind a nickname. /realname <nick> (alias /whoisnick) does the reverse of a nick: given the visible text, it returns the player.
/realname Kingβ King = Notch
How it works
Section titled βHow it worksβ- The lookup is case-insensitive and matches the plain (tag-stripped) nick.
- Online players are checked first via an in-memory index.
- On a miss, dNicks falls back to a best-effort scan of stored player files, so it can often resolve a nick of an offline player too.
Permission
Section titled βPermissionβdnicks.realname β on by default. Set it to op if you want the lookup to be staff-only:
/lp group default permission set dnicks.realname falseUniqueness
Section titled βUniquenessβIf nick.unique is true in config.yml, two players canβt share the same plain nick, so a lookup is always unambiguous.