Olá,
Seguinte estou enfrentando o seguinte erro em uma das partes de utilizar o vagão para colocar o carvão.
Lua Script Error: [Action Interface]
data/actions/scripts/quests/the hidden city of beregar/coalWagon.lua:onUse
.../scripts/quests/the hidden city of beregar/coalWagon.lua:9: attempt to index field 'wagon' (a number value)
stack traceback:
[C]: in function '__index'
.../scripts/quests/the hidden city of beregar/coalWagon.lua:9: in function <.../scripts/quests/the hidden city of beregar/coalWagon.lua:6>
Segue o coalWagon.lua
local config = {
{wagon = 7131, stopPos = Position(32717, 31492, 11)},
{wagon = 8749, stopPos = Position(32699, 31492, 11)}
}
function onUse(player, item, fromPosition, target, toPosition, isHotkey)
for i = 1, #config do
local table = config[i]
local wagonPos = table.wagon:getPosition()
if table.wagon == 7131 and wagonPos ~= table.stopPos then
Tile(wagonPos):getTopTopItem():moveTo(wagonPos, x + 2)
elseif table.wagon == 8749 and wagonPos ~= table.stopPos then
Tile(wagonPos):getTopTopItem():moveTo(wagonPos, x - 2)
end
player:say("SQUEEEEAK", TALKTYPE_MONSTER_SAY, false, 0, wagonPos)
end
return true
end
Obrigado!