GetAutoSellDelay
Returns the delay (in milliseconds) applied after each auto-sell operation performed by AutoSell.
Default value: 3 ms.
Возвращает задержку (в миллисекундах), применяемую после каждой операции авто-продажи через AutoSell.
Значение по умолчанию: 3 мс.
function GetAutoSellDelay: Word;
def GetAutoSellDelay() -> int: ...
begin
if GetAutoSellDelay > 1000 then
SetAutoSellDelay(50);
end.
if GetAutoSellDelay() > 1000:
SetAutoSellDelay(50)