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

DressSpeed

Controls the delay (in milliseconds) between individual equip/unequip operations in EquipItems, UnequipItems, and related dress/undress methods.

Clamped to the range 10–10000 ms.

In Python, use GetDressSpeed() / SetDressSpeed(value).

Задаёт задержку (в миллисекундах) между отдельными операциями экипировки/снятия в EquipItems, UnequipItems и связанных методах одевания/раздевания.

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

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

Pascal

var DressSpeed: Integer;

Python

def GetDressSpeed() -> int: ...
def SetDressSpeed(Value: int) -> None: ...

Pascal Example

begin
  DressSpeed := 500;
  EquipItems(MyDressSet);
end.

Python Example

SetDressSpeed(500)
EquipItems(my_dress_set)

See Also

EquipItems, UnequipItems, SetDress