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

DropDelay

Controls the delay (in milliseconds) after drop operations (Drop, DropHere, DropItem, MoveItem, etc.).

Clamped to the range 50–10000 ms.

In Python, use GetDropDelay() / SetDropDelay(value).

Задаёт задержку (в миллисекундах) после операций сброса (Drop, DropHere, DropItem, MoveItem и т.д.).

Ограничивается диапазоном 50–10000 мс.

В Python используйте GetDropDelay() / SetDropDelay(value).

Pascal

var DropDelay: Integer;

Python

def GetDropDelay() -> int: ...
def SetDropDelay(Value: int) -> None: ...

Pascal Example

begin
  DropDelay := 1000;
  MoveItem(FindItem, 1, Backpack, 0, 0, 0);
end.

Python Example

SetDropDelay(1000)
MoveItem(FindItem(), 1, Backpack(), 0, 0, 0)

See Also

Drop, DropHere, DropItem, MoveItem