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).
var DropDelay: Integer;
def GetDropDelay() -> int: ...
def SetDropDelay(Value: int) -> None: ...
begin
DropDelay := 1000;
MoveItem(FindItem, 1, Backpack, 0, 0, 0);
end.
SetDropDelay(1000)
MoveItem(FindItem(), 1, Backpack(), 0, 0, 0)