GetScriptsCount
Returns the total number of active scripts for the current character.
In Python, this method is named GetScriptCount.
Возвращает общее количество активных скриптов текущего персонажа.
В Python метод называется GetScriptCount.
function GetScriptsCount: Word;
def GetScriptCount() -> int: ...
begin
AddToSystemJournal('Active scripts: ' + IntToStr(GetScriptsCount));
end.
AddToSystemJournal(f'Active scripts: {GetScriptCount()}')