LineName
Returns the name of the speaker of the last matched journal entry.
This property is updated after InJournal, InJournalBetweenTimes, Journal, or LastJournalMessage calls.
Возвращает имя говорящего из последней найденной записи журнала.
Это свойство обновляется после вызовов InJournal, InJournalBetweenTimes, Journal или LastJournalMessage.
function LineName: String;
def LineName() -> str: ...
begin
if InJournal('bank') >= 0 then
AddToSystemJournal('Speaker: ' + LineName + ' (ID: $' + IntToHex(LineID, 8) + ')');
end.
if InJournal('bank') >= 0:
AddToSystemJournal(f'Speaker: {LineName()} (ID: ${LineID():08X})')