PetsCurrent
Returns the current number of pets/followers the character has.
Returns 0 if the character is not connected.
Возвращает текущее количество петов/фолловеров персонажа.
Возвращает 0, если персонаж не подключён.
function PetsCurrent: Byte;
def PetsCurrent() -> int: ...
begin
AddToSystemJournal('Pets: ' + IntToStr(PetsCurrent) + ' / ' + IntToStr(PetsMax));
end.
AddToSystemJournal(f'Pets: {PetsCurrent()} / {MaxPets()}')