FoundedParamID
Returns the parameter ID from the last successful journal search performed by InJournal or InJournalBetweenTimes.
This value indicates the message type/source of the found journal entry.
Возвращает ID параметра из последнего успешного поиска в журнале через InJournal или InJournalBetweenTimes.
Значение указывает на тип/источник найденной записи журнала.
function FoundedParamID: Integer;
def FoundedParamID() -> int: ...
begin
if InJournal('You', -1) > 0 then
AddToSystemJournal('FoundedParamID = ' + IntToStr(FoundedParamID));
end.
if InJournal('You', -1) > 0:
AddToSystemJournal(f'FoundedParamID = {FoundedParamID()}')