Faz o seguinte, vai no teu config.lua e dexa como quer para os players que não estiverem em trainer. Depois vai na pasta creaturescripts/scripts, abra o idle.lua e cole isso dentro:
local config = {
idleWarning = getConfigValue('idleWarningTime'),
idleKick = getConfigValue('idleKickTime'),
kickarea = 21600000
}
local arena = {
frompos = {x=378, y=243, z=7},
topos = {x=389, y=248, z=7},
}
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) and not isInArea(getPlayerPosition(cid), arena.frompos, arena.topos) then
doRemoveCreature(cid)
elseif(config.idleWarning > 0 and idleTime == config.idleWarning) then
local message = "You have been idle for " .. math.ceil(config.idleWarning / 60000) .. " minutes"
elseif isInArea(getPlayerPosition(cid), arena.frompos, arena.topos) and (config.kickarea > 0 and idleTime > config.kickarea) then
doRemoveCreature(cid)
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 you are still idle"
end
doPlayerSendTextMessage(cid, MESSAGE_STATUS_WARNING, message .. ".")
end
return true
end
Aqui você edita:
kickarea = 21600000
(cada 1000 é 1 segundo, logo 21600000 são 6 horas!)
aqui é a área:
frompos = {x=378, y=243, z=7},
topos = {x=389, y=248, z=7},
quem tiver nessa área não obedecerá o kick padrão.