IsGump
Returns True if there are gumps in the cache, False if there are no gumps.
Returns False if the character is disconnected.
Возвращает True, если в кеше есть гампы, False, если гампов нет.
Возвращает False, если персонаж не подключён.
function IsGump: Boolean;
def IsGump() -> bool: ...
begin
if IsGump then
AddToSystemJournal('Gump found')
else
AddToSystemJournal('No gumps');
end.
if IsGump():
AddToSystemJournal('Gump found')
else:
AddToSystemJournal('No gumps')