Home API Manuals About Forum
Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage

GetAutoSellDelay

Returns the delay (in milliseconds) applied after each auto-sell operation performed by AutoSell.

Default value: 3 ms.

Возвращает задержку (в миллисекундах), применяемую после каждой операции авто-продажи через AutoSell.

Значение по умолчанию: 3 мс.

Pascal

function GetAutoSellDelay: Word;

Python

def GetAutoSellDelay() -> int: ...

Pascal Example

begin
  if GetAutoSellDelay > 1000 then
    SetAutoSellDelay(50);
end.

Python Example

if GetAutoSellDelay() > 1000:
    SetAutoSellDelay(50)

See Also

SetAutoSellDelay, AutoSell