1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-12 10:04:40 +02:00

removed server api and added new line

This commit is contained in:
Maik Wild 2018-02-20 12:29:13 +01:00
parent 95f92e9ad5
commit 43a0b0b1a5
3 changed files with 3 additions and 36 deletions

View File

@ -7,3 +7,6 @@ global.scenario.variables.player_deaths = {}
global.scenario.config = {}
global.scenario.custom_functions = {}
global.scenario.config.nuke_min_time_hours = 3 --how long a player must be on the server to be allowed to use the nuke
global.newline = "\n"
newline = "\n"

View File

@ -23,7 +23,6 @@ require "tasklist"
require "autodeconstruct"
require "corpse_util"
require "reactor_meltdown"
require "server_api"
local function player_joined(event)
local player = game.players[event.player_index]

View File

@ -1,35 +0,0 @@
--This file is used by the discord bot to access ingame information
--If you launch this scenario standalone, you don't need this file
function bot_command_players(filename)
game.write_file(filename, string.format("Online players (%d):\n", #game.connected_players), false,0)
for _,p in pairs(game.connected_players) do
game.write_file(filename, p.name .. "\n", true,0)
end
end
function bot_command_time(filename)
local s = math.floor(game.tick/60)
local m = math.floor(s/60)
local h = math.floor(m/60)
local d = math.floor(h/24)
s = s % 60
m = m % 60
h = h % 24
if d == 0 then
d = ""
if h == 0 then
h = ""
if m == 0 then
m = ""
end
end
else
d = string.format("%s days ", d)
end
if m ~= "" then m = string.format("%s minutes ", m) end
if h ~= "" then h = string.format("%s hours ", h) end
game.write_file(filename,string.format("%s%s%s%s seconds", d, h, m, s), false,0)
end