Olá galera, Boa tarde.
Hoje vim pedir uma ajuda para solucionar um problema no onDeath da minha Task.
TFS: 1.2
Versão: 10.9
CreatureScript:
function onDeath(cid, corpse, deathList)
local qntdade = 600
local stoTime = 96586
local stoKill = 96587
if getCreatureName(cid) == "Multi" then
for a = 1, #deathList do
local pk = deathList[a]
local left = math.ceil((getPlayerStorageValue(pk, stoTime) - os.time())/(24 * 60 * 60))
if left > 0 and getPlayerStorageValue(pk, stoKill) > 0 then
setPlayerStorageValue(pk, stoKill, getPlayerStorageValue(pk, stoKill) - 1)
local sto = getPlayerStorageValue(pk, stoKill)
local jaMatou = math.abs(getPlayerStorageValue(pk, stoKill)-qntdade)
if sto == 0 then
doPlayerSendTextMessage(pk, 22, "[Multi Task Finalizada] ("..qntdade.."/"..qntdade..")")
else
doPlayerSendTextMessage(pk, 22, "[Multi Task] ("..jaMatou.."/"..qntdade..")")
end
end
end
end
return true
end
ERROR: