1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2025-01-24 03:47:58 +02:00
2021-03-28 16:58:54 +02:00

23 lines
498 B
Lua

local Public = {}
--[[
on_inactive_players - Performs operation on inactive players from the game
if they exceed time.
@param time - Maximum time a player can be inactive.
--]]
Public.on_inactive_players = function(time)
if not time then
time = 5
end
for _, p in pairs(game.connected_players) do
local afk = p.afk_time
time = time * 60 * 60
if afk >= time then
game.kick_player(p, 'Kicked by script')
end
end
end
return Public