Version 1.8

This commit is contained in:
OTCv8
2020-01-10 02:29:15 +01:00
parent 2a10e65ec0
commit 26c347d2bc
38 changed files with 531 additions and 792 deletions

View File

@@ -17,8 +17,8 @@ Panel
!tooltip: tr('Disable chat and allow walk using WSAD keys')
OptionCheckBox
id: extentedPreWalking
!text: tr('Enable smooth walking (DASH)')
id: dash
!text: tr('Enable fast walking (DASH)')
!tooltip: tr('Allows to execute next move without server confirmation of previous one')
OptionCheckBox

View File

@@ -6,7 +6,7 @@ local defaultOptions = {
classicView = true,
classicControl = true,
smartWalk = false,
extentedPreWalking = true,
dash = false,
autoChaseOverride = true,
showStatusMessagesInConsole = true,
showEventMessagesInConsole = true,
@@ -292,7 +292,7 @@ function setOption(key, value, force)
addEvent(function()
modules.game_interface.updateStretchShrink()
end)
elseif key == 'extentedPreWalking' then
elseif key == 'dash' then
if value then
g_game.setMaxPreWalkingSteps(2)
else