CharTitle
Returns the title of the current character (e.g. "Alex, Grandmaster Alchemist").
Returns an empty string if the character is not connected to the UO server.
In Python, this method is named GetCharTitle.
Возвращает титул текущего персонажа (например, "Alex, Grandmaster Alchemist").
Возвращает пустую строку, если персонаж не подключён к серверу UO.
В Python метод называется GetCharTitle.
function CharTitle: String;
def GetCharTitle() -> str: ...
begin
AddToSystemJournal('Title: ' + CharTitle);
end.
AddToSystemJournal(f'Title: {GetCharTitle()}')