Ir para conteúdo

Ajuda | Creaturescript | Auto Kick !


Marcelo96

Posts Recomendados

Por favor, como eu coloco esse creaturescript para funcionar?

tem que por o que no creaturescripts.xml ?

 

 

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 = "You have been idle for " .. math.ceil(config.idleWarning / 1) .. " minutes"

if(config.idleKick > 0) then

message = message .. ", you will be disconnected in "

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

if(diff > 1) then

message = message .. diff .. " minutes"

else

message = message .. "one minute"

end

 

message = message .. " if you are still idle"

end

 

doPlayerSendTextMessage(cid, MESSAGE_STATUS_WARNING, message .. "Você esta inativo por 1 minuto, saia do piso onde esta ou sera kickado.")

end

 

return true

end

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...