Str
Returns the current Strength stat of the character.
This is a shorthand property equivalent to GetStr.
Returns 0 if the character is not connected.
Возвращает текущее значение характеристики Strength (Сила) персонажа.
Это сокращённое свойство, эквивалентное GetStr.
Возвращает 0, если персонаж не подключён.
function Str: Integer;
def Str() -> int: ...
begin
AddToSystemJournal('STR: ' + IntToStr(Str));
AddToSystemJournal('DEX: ' + IntToStr(Dex));
AddToSystemJournal('INT: ' + IntToStr(Int));
end.
AddToSystemJournal(f'STR: {Str()}')
AddToSystemJournal(f'DEX: {Dex()}')
AddToSystemJournal(f'INT: {Int()}')