Ir para conteúdo

[Encerrado] [Encerrado] Erro na creaturescripts/scripts/idle.lua


lucascat1

Posts Recomendados

Galera, alguém pode me ajudar? Estou rodando um Otserv aqui 8.60 e quando dá a hora do evento FireStorm começar o tp não abre e na distro aparece esse erro:

error - creatureScript Interface  data/creaturescripts/scripts/idle.lua:14 in function <data/creaturescripts/scripts/idle.lua:6>

 

Se alguém ajudar dou REP++

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

1 hora atrás, DarkWore disse:

Sem o Script não tem como dar suporte.

Segue o script Idle.lua:

local config = {    idleWarning = getConfigValue('idleWarningTime'),    idleKick = getConfigValue('idleKickTime')}function onThink(cid, interval)    if(getTileInfo(getCreaturePosition(cid)).noLogout or getCreatureNoMove(cid) or        getPlayerCustomFlagValue(cid, PLAYERCUSTOMFLAG_ALLOWIDLE)) then        return true    end    local idleTime = getPlayerIdleTime(cid) + interval    doPlayerSetIdleTime(cid, idleTime)    if(config.idleKick > 0 and idleTime > config.idleKick) then        doRemoveCreature(cid)    elseif(config.idleWarning > 0 and idleTime == config.idleWarning) then        local message = "There was no variation in your behaviour for " .. math.ceil(config.idleWarning / 60000) .. " minutes"        if(config.idleKick > 0) then            message = message .. ". You will be disconnected in "            local diff = math.ceil((config.idleWarning - config.idleKick) / 60000)            if(diff > 1) then                message = message .. diff .. " minutes"            else                message = message .. "one minute"            end            message = message .. " if there is no change in your actions until then."        end        doPlayerSendTextMessage(cid, MESSAGE_STATUS_WARNING, message .. ".")    end    return trueend

 

alguém pode ajudar?

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

1 hora atrás, lucascat1 disse:

Segue o script Idle.lua:

 

 

local config = {

    idleWarning = getConfigValue('idleWarningTime'),

    idleKick = getConfigValue('idleKickTime')

}

function onThink(cid, interval)

    if(getTileInfo(getCreaturePosition(cid)).noLogout or getCreatureNoMove(cid) or

        getPlayerCustomFlagValue(cid, PLAYERCUSTOMFLAG_ALLOWIDLE)) then

        return true

    end

    local idleTime = getPlayerIdleTime(cid) + interval

    doPlayerSetIdleTime(cid, idleTime)

    if(config.idleKick > 0 and idleTime > config.idleKick) then

        doRemoveCreature(cid)

    elseif(config.idleWarning > 0 and idleTime == config.idleWarning) then

        local message = "There was no variation in your behaviour for " .. math.ceil(config.idleWarning / 60000) .. " minutes"

        if(config.idleKick > 0) then

            message = message .. ". You will be disconnected in "

            local diff = math.ceil((config.idleWarning - config.idleKick) / 60000)

            if(diff > 1) then

                message = message .. diff .. " minutes"

            else

                message = message .. "one minute"

            end

            message = message .. " if there is no change in your actions until then."

        end

        doPlayerSendTextMessage(cid, MESSAGE_STATUS_WARNING, message .. ".")

    end

    

return true

end

 

alguém pode ajudar?

Qual versão do TFS que você está usando?

Link para o comentário
Compartilhar em outros sites

Agora, DarkWore disse:

Qual versão do TFS que você está usando?

The OTX Server Version: (2.6) - Codename: (SCARETALE)

Compiled with GNU C++ version 3.4.5 (mingw special) for arch 32 Bits at Nov 21 2016 17:47:43

Link para o comentário
Compartilhar em outros sites

  • 5 months later...
Visitante
Este tópico está impedido de receber novos posts.
  • Quem Está Navegando   0 membros estão online

    • Nenhum usuário registrado visualizando esta página.
×
×
  • Criar Novo...