mirror of
https://github.com/edubart/otclient.git
synced 2025-10-15 20:14:54 +02:00
Fix table copy function, combat controls now hideable
This commit is contained in:
@@ -78,8 +78,8 @@ function update()
|
||||
end
|
||||
|
||||
function check()
|
||||
if(Options.getOption('autoChaseOverride')) then
|
||||
if(g_game.isAttacking() and g_game.getChaseMode() == ChaseOpponent) then
|
||||
if Options.getOption('autoChaseOverride') then
|
||||
if g_game.isAttacking() and g_game.getChaseMode() == ChaseOpponent then
|
||||
g_game.setChaseMode(DontChase)
|
||||
end
|
||||
end
|
||||
@@ -87,13 +87,13 @@ end
|
||||
|
||||
function online()
|
||||
local player = g_game.getLocalPlayer()
|
||||
if(player) then
|
||||
if player then
|
||||
local char = player:getName()
|
||||
|
||||
local lastCombatControls = g_settings.getNode('LastCombatControls')
|
||||
|
||||
if(not table.empty(lastCombatControls)) then
|
||||
if(lastCombatControls[char]) then
|
||||
if not table.empty(lastCombatControls) then
|
||||
if lastCombatControls[char] then
|
||||
g_game.setFightMode(lastCombatControls[char].fightMode)
|
||||
g_game.setChaseMode(lastCombatControls[char].chaseMode)
|
||||
g_game.setSafeFight(lastCombatControls[char].safeFight)
|
||||
@@ -101,18 +101,17 @@ function online()
|
||||
end
|
||||
end
|
||||
|
||||
combatControlsWindow:setVisible(combatControlsButton:isOn())
|
||||
update()
|
||||
end
|
||||
|
||||
function offline()
|
||||
local lastCombatControls = g_settings.getNode('LastCombatControls')
|
||||
if(not lastCombatControls) then
|
||||
if not lastCombatControls then
|
||||
lastCombatControls = {}
|
||||
end
|
||||
|
||||
local player = g_game.getLocalPlayer()
|
||||
if(player) then
|
||||
if player then
|
||||
local char = player:getName()
|
||||
lastCombatControls[char] = {
|
||||
fightMode = g_game.getFightMode(),
|
||||
@@ -162,3 +161,7 @@ end
|
||||
function onSetSafeFight(self, checked)
|
||||
g_game.setSafeFight(not checked)
|
||||
end
|
||||
|
||||
function onMiniWindowClose()
|
||||
combatControlsButton:setOn(false)
|
||||
end
|
||||
|
@@ -28,6 +28,7 @@ MiniWindow
|
||||
icon: combatcontrols.png
|
||||
height: 48
|
||||
&save: true
|
||||
@onClose: onMiniWindowClose()
|
||||
|
||||
MiniWindowContents
|
||||
FightOffensiveBox
|
||||
|
Reference in New Issue
Block a user