%PRO

"%PRO( )" is a Dialog Processing Statement. This is replaced by the pronouns of the character specified. It consists of three parts, separated by a ":" each.
%PRO(Character:Pronoun:Capitalization)
%PRO(Pronoun:Capitalization) (uses "c0" as character)

Character:

The character part defines the character whose gender is supposed to be used.
This must be a valid CharacterData > CharacterKey and can also be x0 > c0 and "player".
If left empty it will automatically add "c0".
If no CharacterData is found the expression is treated as lua code that should result in a valid CharacterData > CharacterKey.

Pronoun:

This has to be a number corresponding to the pronoun that is supposed to be used.
Starting with 0 up to 4.
"female": "she", "her", "her", "hers", "herself"
"male": "he", "him", "his", "his", "himself"
other: "they", "them", "their", "theirs", "themself"

Capitalization:

This has to be either 0 or 1. 0 means the first letter is lower case and 1 means the first letter is upper case.

Examples:

%PRO(female key:0:0) -> "she"
%PRO(male key:3:1) -> "His"
%PRO(other key:4:0) -> "themself"
%PRO(1:1) -> %PRO(c0 (female key):1:1) -> "Her"