GetPlayerIdentityNames
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.