Ir para conteúdo
  • 0

Erro no login.lua


Akhilleus

Pergunta

Boa tarde galera, to com um projeto de server que parou por um motivo, ontem entrei normalmente no server e fui testar o reward criando 2 mcs, deu aquela mensagem de punido por mesmo ip e depois nenhum player consegue entrar, aparece isso:

 

[05/12/2013 17:32:38] Account Manager has logged in.

[05/12/2013 17:32:38] [Error - CreatureScript Interface]
[05/12/2013 17:32:38] buffer:onLogin
[05/12/2013 17:32:38] Description:
[05/12/2013 17:32:38] attempt to index a nil value
[05/12/2013 17:32:38] stack traceback:
[05/12/2013 17:32:38] [C]: in function 'doTeleportThing'
[05/12/2013 17:32:38] [string "loadBuffer"]:7: in function <[string "loadBuffer"]:3>
[05/12/2013 17:32:38] Account Manager has logged out.

[05/12/2013 17:32:39] [Error - CreatureScript Interface]
[05/12/2013 17:32:39] In a timer event called from:
[05/12/2013 17:32:39] data/creaturescripts/scripts/antimc.lua:onLogin
[05/12/2013 17:32:39] Description:
[05/12/2013 17:32:39] (internalGetPlayerInfo) Player not found when requesting player info #28


O meu creaturescript copiei do BigWar, agradeço a ajuda.

Link para o comentário
Compartilhar em outros sites

9 respostass a esta questão

Posts Recomendados

  • 0

Já fiz isso, quando coloco creaturescript de outro servidor o erro persiste assim:

 

[05/12/2013 17:45:53] Account Manager has logged in.

[05/12/2013 17:45:53] [Error - CreatureScript Interface]
[05/12/2013 17:45:53] buffer:onLogin
[05/12/2013 17:45:53] Description:
[05/12/2013 17:45:53] attempt to index a nil value
[05/12/2013 17:45:53] stack traceback:
[05/12/2013 17:45:53] [C]: in function 'doTeleportThing'
[05/12/2013 17:45:53] [string "loadBuffer"]:7: in function <[string "loadBuffer"]:3>
[05/12/2013 17:45:53] Account Manager has logged out.

Link para o comentário
Compartilhar em outros sites

  • 0

Tirei o antimc mas ainda esta esse problema. Outra informação relevante é que coloquei changemap no meu ot e antes de nao conseguir entrar o mapa mudou todas as vezes menos na ultima que travou.

Link para o comentário
Compartilhar em outros sites

  • 0

login.lua

Você não tem permissão para fazer upload deste tipo de arquivo

local config = {

loginMessage = getConfigValue('loginMessage'),

useFragHandler = getBooleanFromString(getConfigValue('useFragHandler'))

}

 

function onLogin(cid)

local loss = getConfigValue('deathLostPercent')

if(loss ~= nil) then

doPlayerSetLossPercent(cid, PLAYERLOSS_EXPERIENCE, loss * 10)

doPlayerAddBlessing(cid, 1)

doPlayerAddBlessing(cid, 2)

doPlayerAddBlessing(cid, 3)

doPlayerAddBlessing(cid, 4)

doPlayerAddBlessing(cid, 5)

end

 

local accountManager = getPlayerAccountManager(cid)

if(accountManager == MANAGER_NONE) then

local lastLogin, str = getPlayerLastLoginSaved(cid), config.loginMessage

if(lastLogin > 0) then

doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, str)

str = "Your last visit was on " .. os.date("%a %b %d %X %Y", lastLogin) .. "."

else

str = str .. " Please choose your outfit."

doPlayerSendOutfitWindow(cid)

end

 

doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, str)

elseif(accountManager == MANAGER_NAMELOCK) then

doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, it appears that your character has been namelocked, what would you like as your new name?")

elseif(accountManager == MANAGER_ACCOUNT) then

doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, type 'account' to manage your account and if you want to start over then type 'cancel'.")

else

doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, type 'account' to create an account or type 'recover' to recover an account.")

end

 

if(not isPlayerGhost(cid)) then

doSendMagicEffect(getCreaturePosition(cid), CONST_ME_TELEPORT)

end

 

registerCreatureEvent(cid, "kill")

registerCreatureEvent(cid, "onPrepareDeath")

registerCreatureEvent(cid, "PlayerLogout")

registerCreatureEvent(cid, "Reward")

registerCreatureEvent(cid, "onPrepareDeath")

registerCreatureEvent(cid, "deathBroadcast")

registerCreatureEvent(cid, "DeathBroadcast")

 

registerCreatureEvent(cid, "Idle")

if(config.useFragHandler) then

registerCreatureEvent(cid, "SkullCheck")

end

 

registerCreatureEvent(cid, "ReportBug")

return true

end

 

Link para o comentário
Compartilhar em outros sites

  • 0

testa esse:

 

local config = {
loginMessage = getConfigValue('loginMessage'),
useFragHandler = getBooleanFromString(getConfigValue('useFragHandler'))
}

function onLogin(cid)
local loss = getConfigValue('deathLostPercent')
if(loss ~= nil) then
doPlayerSetLossPercent(cid, PLAYERLOSS_EXPERIENCE, loss * 10)
end

local accountManager = getPlayerAccountManager(cid)
if(accountManager == MANAGER_NONE) then
local lastLogin, str = getPlayerLastLoginSaved(cid), config.loginMessage
if(lastLogin > 0) then
doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, str)
str = "Your last visit was on " .. os.date("%a %b %d %X %Y", lastLogin) .. "."
else
str = str .. " Please choose your outfit."
doPlayerSendOutfitWindow(cid)
end

doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, str)
elseif(accountManager == MANAGER_NAMELOCK) then
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, it appears that your character has been namelocked, what would you like as your new name?")
elseif(accountManager == MANAGER_ACCOUNT) then
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, type 'account' to manage your account and if you want to start over then type 'cancel'.")
else
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, type 'account' to create an account or type 'recover' to recover an account.")
end

if(not isPlayerGhost(cid)) then
doSendMagicEffect(getCreaturePosition(cid), CONST_ME_TELEPORT)
end

registerCreatureEvent(cid, "Mail")
registerCreatureEvent(cid, "GuildMotd")

registerCreatureEvent(cid, "Idle")
if(config.useFragHandler) then
registerCreatureEvent(cid, "SkullCheck")
end

registerCreatureEvent(cid, "ReportBug")
registerCreatureEvent(cid, "AdvanceSave")
return true
end

 

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...