GetWalkUnmountTimer
Returns the current walk delay (in milliseconds) used when the character is on foot and walking.
This timer controls the interval between movement steps during walking without a mount. The value can be changed with SetWalkUnmountTimer.
Возвращает текущую задержку ходьбы (в миллисекундах), используемую, когда персонаж идёт пешком.
Этот таймер управляет интервалом между шагами при ходьбе без маунта. Значение можно изменить с помощью SetWalkUnmountTimer.
function GetWalkUnmountTimer: Word;
def GetWalkUnmountTimer() -> int: ...
begin
AddToSystemJournal('Walk unmount timer: ' + IntToStr(GetWalkUnmountTimer) + ' ms');
AddToSystemJournal('Run unmount timer: ' + IntToStr(GetRunUnmountTimer) + ' ms');
end.
AddToSystemJournal(f'Walk unmount timer: {GetWalkUnmountTimer()} ms')
AddToSystemJournal(f'Run unmount timer: {GetRunUnmountTimer()} ms')
SetWalkUnmountTimer, GetRunUnmountTimer, GetWalkMountTimer, MoveXY