Ir para conteúdo

MoveEvents


Maxwillian

Posts Recomendados

[30/04/2014 22:21:11] [Error - MoveEvents Interface]
[30/04/2014 22:21:11] data/movements/scripts/PVP/Trade_Back.lua:onStepIn
[30/04/2014 22:21:11] Description:
[30/04/2014 22:21:11] data/lib/011-string.lua:29: attempt to index local 'str' (a number value)
[30/04/2014 22:21:11] stack traceback:
[30/04/2014 22:21:11] data/lib/011-string.lua:29: in function 'explode'
[30/04/2014 22:21:11] data/movem
Estou com esse problema em meu servido se alguem souber como eu poderia arrumar
Aqui esta meu Trade-back
local tileClans = {33800, 33801, 33802, 33803, 33804, 33805, 33806, 33807, 33808}
-- psy ore win nat sea gard male rai volc
function onStepIn(cid, item, pos)
if isSummon(cid) then
return false
end
--
local storage = 171877
if isInArray(tileClans, item.actionid) then
storage = 171878
end
--
local b = string.explode(getPlayerStorageValue(cid, storage), "/")
local t = string.explode(b[1], ";") --alterado v1.8
--
if #getCreatureSummons(cid) >= 1 then
for i = 1, #getCreatureSummons(cid) do
doTeleportThing(getCreatureSummons(cid), {x=tonumber(t[1]) - 1, y=tonumber(t[2]), z=tonumber(t[3])}, false)
end
end
doTeleportThing(cid, {x=tonumber(t[1]), y=tonumber(t[2]), z=tonumber(t[3])}, false)
setPlayerStorageValue(cid, storage, -1)
return true
end

 

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...