GetPlayerIdentityNames

From Wiki G1R-MP G1 Remake Multiplayer
Revision as of 11:36, 27 August 2026 by QCherry (talk | contribs) (Document 0.1a Lua API, identities, moderation and synchronized spells)
Jump to navigation Jump to search

getPlayerIdentityNames

Returns every complete armor-free character identity supported by the server.

Syntax

table getPlayerIdentityNames()

Parameters

This function does not accept parameters.

Returns

Returns a one-based array of stable identity keys. The first entry is default.

Examples

List all complete character identities:

for _, identityKey in ipairs(getPlayerIdentityNames()) do
    outputDebugString(identityKey)
end

Notes

  • Available only in server-side resource scripts.
  • This is the supported catalog for complete character appearance selection in G1R:MP 0.1.
  • Each identity combines the matching GTO face profile with validated face materials and hair geometry; selecting it does not equip armor.
  • Gothic Remake character models and variants are authored together with particular armor sets. Armor compatibility therefore varies by identity, and some identity/armor combinations do not exist or do not render correctly.
  • Test every identity and armor combination used by a resource.
  • See Player identity catalog for the complete list.