lucascat1 0 Postado Junho 10, 2017 Share Postado Junho 10, 2017 (editado) 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 Junho 10, 2017 por lucascat1 Link para o comentário Compartilhar em outros sites More sharing options...
DarkWore 112 Postado Junho 10, 2017 Share Postado Junho 10, 2017 (editado) Sem o Script não tem como dar suporte. Editado Junho 10, 2017 por DarkWore Link para o comentário Compartilhar em outros sites More sharing options...
lucascat1 0 Postado Junho 10, 2017 Autor Share Postado Junho 10, 2017 (editado) 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 Junho 10, 2017 por DarkWore Link para o comentário Compartilhar em outros sites More sharing options...
DarkWore 112 Postado Junho 10, 2017 Share Postado Junho 10, 2017 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 More sharing options...
lucascat1 0 Postado Junho 10, 2017 Autor Share Postado Junho 10, 2017 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 More sharing options...
Poccnn 385 Postado Junho 10, 2017 Share Postado Junho 10, 2017 Caro membro, Seu tópico foi movido de CreatureScripts e Movements para Scripts. Link para o comentário Compartilhar em outros sites More sharing options...
Stigal 584 Postado Novembro 29, 2017 Share Postado Novembro 29, 2017 A questão neste tópico de suporte foi encerrada por falta de resposta. Este tópico está fechado e foi movido para Suporte - Tópicos Sem Resposta. Link para o comentário Compartilhar em outros sites More sharing options...
Stigal 584 Postado Novembro 29, 2017 Share Postado Novembro 29, 2017 A questão neste tópico de suporte foi encerrada por falta de resposta. Este tópico está fechado e foi movido para Suporte - Tópicos Sem Resposta. Link para o comentário Compartilhar em outros sites More sharing options...
Posts Recomendados