Fix 255 also another cooldown bug:
* If you use the cooldown during the ping delay time it wouldn't init the cooldown again.
This commit is contained in:
parent
a0b2504f11
commit
9e208fa792
|
@ -8,6 +8,5 @@ function UIButton.create()
|
||||||
end
|
end
|
||||||
|
|
||||||
function UIButton:onMouseRelease(pos, button)
|
function UIButton:onMouseRelease(pos, button)
|
||||||
if self:isPressed() then return true end
|
return self:isPressed()
|
||||||
return false
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -78,8 +78,9 @@ function turnOffCooldown(progressRect)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- create particles
|
-- create particles
|
||||||
local particle = g_ui.createWidget('GroupCooldownParticles', progressRect)
|
--[[local particle = g_ui.createWidget('GroupCooldownParticles', progressRect)
|
||||||
particle:fill('parent')
|
particle:fill('parent')
|
||||||
|
scheduleEvent(function() particle:destroy() end, 1000) -- hack until onEffectEnd]]
|
||||||
|
|
||||||
progressRect = nil
|
progressRect = nil
|
||||||
end
|
end
|
||||||
|
@ -109,9 +110,6 @@ function onSpellCooldown(iconId, duration)
|
||||||
local spell, profile, spellName = Spells.getSpellByIcon(iconId)
|
local spell, profile, spellName = Spells.getSpellByIcon(iconId)
|
||||||
if not spellName then return end
|
if not spellName then return end
|
||||||
|
|
||||||
--local ping = g_game.getPing()
|
|
||||||
--if ping > 0 then duration = duration + ping end
|
|
||||||
|
|
||||||
clientIconId = Spells.getClientId(spellName)
|
clientIconId = Spells.getClientId(spellName)
|
||||||
if not clientIconId then return end
|
if not clientIconId then return end
|
||||||
|
|
||||||
|
@ -119,29 +117,32 @@ function onSpellCooldown(iconId, duration)
|
||||||
if not icon then
|
if not icon then
|
||||||
icon = g_ui.createWidget('SpellIcon', spellCooldownPanel)
|
icon = g_ui.createWidget('SpellIcon', spellCooldownPanel)
|
||||||
icon:setId(spellName)
|
icon:setId(spellName)
|
||||||
icon:setImageSource('/images/game/spells/' .. SpelllistSettings[profile].iconFile)
|
end
|
||||||
icon:setImageClip(Spells.getImageClip(clientIconId, profile))
|
icon:setImageSource('/images/game/spells/' .. SpelllistSettings[profile].iconFile)
|
||||||
|
icon:setImageClip(Spells.getImageClip(clientIconId, profile))
|
||||||
local progressRect = g_ui.createWidget('SpellProgressRect', icon)
|
|
||||||
|
local progressRect = icon:getChildById(spellName)
|
||||||
|
if not progressRect then
|
||||||
|
progressRect = g_ui.createWidget('SpellProgressRect', icon)
|
||||||
|
progressRect:setId(spellName)
|
||||||
progressRect.icon = icon
|
progressRect.icon = icon
|
||||||
progressRect:fill('parent')
|
progressRect:fill('parent')
|
||||||
progressRect:setTooltip(spellName)
|
else
|
||||||
|
progressRect:setPercent(0)
|
||||||
local updateFunc = function()
|
|
||||||
updateCooldown(progressRect, duration/25)
|
|
||||||
end
|
|
||||||
local finishFunc = function()
|
|
||||||
removeCooldown(progressRect)
|
|
||||||
end
|
|
||||||
initCooldown(progressRect, updateFunc, finishFunc)
|
|
||||||
end
|
end
|
||||||
|
progressRect:setTooltip(spellName)
|
||||||
|
|
||||||
|
local updateFunc = function()
|
||||||
|
updateCooldown(progressRect, duration/20)
|
||||||
|
end
|
||||||
|
local finishFunc = function()
|
||||||
|
removeCooldown(progressRect)
|
||||||
|
end
|
||||||
|
initCooldown(progressRect, updateFunc, finishFunc)
|
||||||
end
|
end
|
||||||
|
|
||||||
function onSpellGroupCooldown(groupId, duration)
|
function onSpellGroupCooldown(groupId, duration)
|
||||||
if not SpellGroups[groupId] then return end
|
if not SpellGroups[groupId] then return end
|
||||||
|
|
||||||
--local ping = g_game.getPing()
|
|
||||||
--if ping > 0 then duration = duration + ping end
|
|
||||||
|
|
||||||
local icon = contentsPanel:getChildById('groupIcon' .. SpellGroups[groupId])
|
local icon = contentsPanel:getChildById('groupIcon' .. SpellGroups[groupId])
|
||||||
local progressRect = contentsPanel:getChildById('progressRect' .. SpellGroups[groupId])
|
local progressRect = contentsPanel:getChildById('progressRect' .. SpellGroups[groupId])
|
||||||
|
@ -154,7 +155,7 @@ function onSpellGroupCooldown(groupId, duration)
|
||||||
if progressRect then
|
if progressRect then
|
||||||
removeEvent(progressRect.event)
|
removeEvent(progressRect.event)
|
||||||
local updateFunc = function()
|
local updateFunc = function()
|
||||||
updateCooldown(progressRect, duration/25)
|
updateCooldown(progressRect, duration/20)
|
||||||
end
|
end
|
||||||
local finishFunc = function()
|
local finishFunc = function()
|
||||||
turnOffCooldown(progressRect)
|
turnOffCooldown(progressRect)
|
||||||
|
|
|
@ -134,7 +134,7 @@ function onGameStart()
|
||||||
-- open tibia has delay in auto walking
|
-- open tibia has delay in auto walking
|
||||||
if not g_game.isOfficialTibia() then
|
if not g_game.isOfficialTibia() then
|
||||||
g_game.enableFeature(GameForceFirstAutoWalkStep)
|
g_game.enableFeature(GameForceFirstAutoWalkStep)
|
||||||
else
|
else
|
||||||
g_game.disableFeature(GameForceFirstAutoWalkStep)
|
g_game.disableFeature(GameForceFirstAutoWalkStep)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue