Ir para conteúdo

Estranho


GicoO

Posts Recomendados

Oi gente

Tipow no meu otserv quando vc tenta mata otro player a vida dele fica 0 mas ele nao morre.

Ou seja

to no x1 com o player dai quando eu mato ele , em vez dele cair e talz a vida dele some ele fica com 0 de vida e continua andando de boa tipo um "zumbi".

 

Olha o erro que fica dando dai

:S

[24/07/2011 12:37:25] [Error - CreatureScript Interface] 
[24/07/2011 12:37:25] buffer:onKill
[24/07/2011 12:37:25] Description: 
[24/07/2011 12:37:25] data/lib/011-string.lua:27: attempt to index local 'str' (a number value)
[24/07/2011 12:37:25] stack traceback:
[24/07/2011 12:37:25] 	data/lib/011-string.lua:27: in function 'explode'
[24/07/2011 12:37:25] 	[string "ranks = {..."]:30: in function 'getPlayerLevelInRank'
[24/07/2011 12:37:25] 	[string "loadBuffer"]:11: in function <[string "loadBuffer"]:1>

 

Alguem ajuda ai? :S :winksmiley02:

Rep+ pra quem ajudar :)

 

 

Alguem ajuda ai PLS :X

Editado por GicoxD
Link para o comentário
Compartilhar em outros sites

  • 2 months later...

Oi gente

Tipow no meu otserv quando vc tenta mata otro player a vida dele fica 0 mas ele nao morre.

Ou seja

to no x1 com o player dai quando eu mato ele , em vez dele cair e talz a vida dele some ele fica com 0 de vida e continua andando de boa tipo um "zumbi".

 

Olha o erro que fica dando dai

:S

[24/07/2011 12:37:25] [Error - CreatureScript Interface] 
[24/07/2011 12:37:25] buffer:onKill
[24/07/2011 12:37:25] Description: 
[24/07/2011 12:37:25] data/lib/011-string.lua:27: attempt to index local 'str' (a number value)
[24/07/2011 12:37:25] stack traceback:
[24/07/2011 12:37:25] 	data/lib/011-string.lua:27: in function 'explode'
[24/07/2011 12:37:25] 	[string "ranks = {..."]:30: in function 'getPlayerLevelInRank'
[24/07/2011 12:37:25] 	[string "loadBuffer"]:11: in function <[string "loadBuffer"]:1>

 

Alguem ajuda ai? :S :winksmiley02:

Rep+ pra quem ajudar :)

 

 

Alguem ajuda ai PLS :X

 

To com o mesmo problema aqui... =/

 

Alguem pode ajudar, pelo amor de Deus...rsrs

 

Abs

Link para o comentário
Compartilhar em outros sites

  • 2 months later...

é a lib dele que ta com erro ta falando que é lib "011-string"

tenta isso entra em data/lib e abre a 011-string apaga tudo que tem dentro e coloca isso

 

string.split = function (str)

local t = {}

return not str:gsub("%w+", function(s) table.insert(t, s) return "" end):find("%S") and t or {}

end

 

string.trim = function (str)

return str:gsub("^%s*(.-)%s*$", "%1")

end

 

string.explode = function (str, sep, limit)

if(type(sep) ~= 'string' or isInArray({tostring(str):len(), sep:len()}, 0)) then

return {}

end

 

local i, pos, tmp, t = 0, 1, "", {}

for s, e in function() return string.find(str, sep, pos) end do

tmp = str:sub(pos, s - 1):trim()

table.insert(t, tmp)

pos = e + 1

 

i = i + 1

if(limit ~= nil and i == limit) then

break

end

end

 

tmp = str:sub(pos):trim()

table.insert(t, tmp)

return t

end

 

string.expand = function (str)

return string.gsub(str, "$(%w+)", function(n) return _G[n] end)

end

 

string.timediff = function (diff)

local format = {

{"week", diff / 60 / 60 / 24 / 7},

{"day", diff / 60 / 60 / 24 % 7},

{"hour", diff / 60 / 60 % 24},

{"minute", diff / 60 % 60},

{"second", diff % 60}

}

 

local t = {}

for k, v in ipairs(format) do

local d, tmp = math.floor(v[2]), ""

if(d > 0) then

tmp = (k < table.maxn(format) and (table.maxn(t) > 0 and ", " or "") or " and ") .. d .. " " .. v[1] .. (d ~= 1 and "s" or "")

table.insert(t, tmp)

end

end

 

return t

end

 

 

 

essa lib n da nenhum bug aki

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...