mirror of
https://github.com/ComfyFactory/ComfyFactorio.git
synced 2025-05-13 21:56:29 +02:00
added better logging when someone utilizes a command
This commit is contained in:
parent
57c81f024b
commit
1358e5cb65
178
chatbot.lua
178
chatbot.lua
@ -1,36 +1,43 @@
|
||||
local event = require 'utils.event'
|
||||
local Event = require 'utils.event'
|
||||
local session = require 'utils.session_data'
|
||||
local Timestamp = require 'utils.timestamp'
|
||||
local Server = require 'utils.server'
|
||||
|
||||
local font_color = {r = 150, g = 100, b = 255, a = 255}
|
||||
local font = "default-game"
|
||||
local font = 'default-game'
|
||||
local format = string.format
|
||||
|
||||
local brain = {
|
||||
[1] = {"Our Discord server is at: https://getcomfy.eu/discord"},
|
||||
[2] = {"Need an admin? Type @Mods in game chat to notify moderators,", "or put a message in the discord help channel."},
|
||||
[3] = {"Scenario repository for download:", "https://github.com/M3wM3w/ComfyFactorio"},
|
||||
[1] = {'Our Discord server is at: https://getcomfy.eu/discord'},
|
||||
[2] = {
|
||||
'Need an admin? Type @Mods in game chat to notify moderators,',
|
||||
'or put a message in the discord help channel.'
|
||||
},
|
||||
[3] = {'Scenario repository for download:', 'https://github.com/M3wM3w/ComfyFactorio'}
|
||||
}
|
||||
|
||||
local links = {
|
||||
["admin"] = brain[2],
|
||||
["administrator"] = brain[2],
|
||||
["discord"] = brain[1],
|
||||
["download"] = brain[3],
|
||||
["github"] = brain[3],
|
||||
["greifer"] = brain[2],
|
||||
["grief"] = brain[2],
|
||||
["griefer"] = brain[2],
|
||||
["griefing"] = brain[2],
|
||||
["mod"] = brain[2],
|
||||
["moderator"] = brain[2],
|
||||
["scenario"] = brain[3],
|
||||
["stealing"] = brain[2],
|
||||
["stole"] = brain[2],
|
||||
["troll"] = brain[2],
|
||||
["trolling"] = brain[2],
|
||||
['admin'] = brain[2],
|
||||
['administrator'] = brain[2],
|
||||
['discord'] = brain[1],
|
||||
['download'] = brain[3],
|
||||
['github'] = brain[3],
|
||||
['greifer'] = brain[2],
|
||||
['grief'] = brain[2],
|
||||
['griefer'] = brain[2],
|
||||
['griefing'] = brain[2],
|
||||
['mod'] = brain[2],
|
||||
['moderator'] = brain[2],
|
||||
['scenario'] = brain[3],
|
||||
['stealing'] = brain[2],
|
||||
['stole'] = brain[2],
|
||||
['troll'] = brain[2],
|
||||
['trolling'] = brain[2]
|
||||
}
|
||||
|
||||
local function on_player_created(event)
|
||||
local player = game.players[event.player_index]
|
||||
player.print("[font=" .. font .. "]" .. "Join the comfy discord >> getcomfy.eu/discord" .. "[/font]", font_color)
|
||||
player.print('[font=' .. font .. ']' .. 'Join the comfy discord >> getcomfy.eu/discord' .. '[/font]', font_color)
|
||||
end
|
||||
|
||||
commands.add_command(
|
||||
@ -53,25 +60,38 @@ commands.add_command(
|
||||
p = log
|
||||
end
|
||||
|
||||
if cmd.parameter == nil then return end
|
||||
if cmd.parameter == nil then
|
||||
return
|
||||
end
|
||||
local target_player = game.players[cmd.parameter]
|
||||
if target_player then
|
||||
if trusted[target_player.name] == true then game.print(target_player.name .. " is already trusted!") return end
|
||||
if trusted[target_player.name] == true then
|
||||
game.print(target_player.name .. ' is already trusted!')
|
||||
return
|
||||
end
|
||||
trusted[target_player.name] = true
|
||||
game.print(target_player.name .. " is now a trusted player.", {r=0.22, g=0.99, b=0.99})
|
||||
game.print(target_player.name .. ' is now a trusted player.', {r = 0.22, g = 0.99, b = 0.99})
|
||||
for _, a in pairs(game.connected_players) do
|
||||
if a.admin == true and a.name ~= player.name then
|
||||
a.print("[ADMIN]: " .. player.name .. " trusted " .. target_player.name, {r = 1, g = 0.5, b = 0.1})
|
||||
a.print(
|
||||
'[ADMIN]: ' .. player.name .. ' trusted ' .. target_player.name,
|
||||
{r = 1, g = 0.5, b = 0.1}
|
||||
)
|
||||
end
|
||||
end
|
||||
end
|
||||
else
|
||||
if cmd.parameter == nil then return end
|
||||
if cmd.parameter == nil then
|
||||
return
|
||||
end
|
||||
local target_player = game.players[cmd.parameter]
|
||||
if target_player then
|
||||
if trusted[target_player.name] == true then game.print(target_player.name .. " is already trusted!") return end
|
||||
if trusted[target_player.name] == true then
|
||||
game.print(target_player.name .. ' is already trusted!')
|
||||
return
|
||||
end
|
||||
trusted[target_player.name] = true
|
||||
game.print(target_player.name .. " is now a trusted player.", {r=0.22, g=0.99, b=0.99})
|
||||
game.print(target_player.name .. ' is now a trusted player.', {r = 0.22, g = 0.99, b = 0.99})
|
||||
end
|
||||
end
|
||||
end
|
||||
@ -97,25 +117,38 @@ commands.add_command(
|
||||
p = log
|
||||
end
|
||||
|
||||
if cmd.parameter == nil then return end
|
||||
if cmd.parameter == nil then
|
||||
return
|
||||
end
|
||||
local target_player = game.players[cmd.parameter]
|
||||
if target_player then
|
||||
if trusted[target_player.name] == false then game.print(target_player.name .. " is already untrusted!") return end
|
||||
if target_player then
|
||||
if trusted[target_player.name] == false then
|
||||
game.print(target_player.name .. ' is already untrusted!')
|
||||
return
|
||||
end
|
||||
trusted[target_player.name] = false
|
||||
game.print(target_player.name .. " is now untrusted.", {r=0.22, g=0.99, b=0.99})
|
||||
game.print(target_player.name .. ' is now untrusted.', {r = 0.22, g = 0.99, b = 0.99})
|
||||
for _, a in pairs(game.connected_players) do
|
||||
if a.admin == true and a.name ~= player.name then
|
||||
a.print("[ADMIN]: " .. player.name .. " untrusted " .. target_player.name, {r = 1, g = 0.5, b = 0.1})
|
||||
a.print(
|
||||
'[ADMIN]: ' .. player.name .. ' untrusted ' .. target_player.name,
|
||||
{r = 1, g = 0.5, b = 0.1}
|
||||
)
|
||||
end
|
||||
end
|
||||
end
|
||||
else
|
||||
if cmd.parameter == nil then return end
|
||||
if cmd.parameter == nil then
|
||||
return
|
||||
end
|
||||
local target_player = game.players[cmd.parameter]
|
||||
if target_player then
|
||||
if trusted[target_player.name] == false then game.print(target_player.name .. " is already untrusted!") return end
|
||||
if target_player then
|
||||
if trusted[target_player.name] == false then
|
||||
game.print(target_player.name .. ' is already untrusted!')
|
||||
return
|
||||
end
|
||||
trusted[target_player.name] = false
|
||||
game.print(target_player.name .. " is now untrusted.", {r=0.22, g=0.99, b=0.99})
|
||||
game.print(target_player.name .. ' is now untrusted.', {r = 0.22, g = 0.99, b = 0.99})
|
||||
end
|
||||
end
|
||||
end
|
||||
@ -123,14 +156,16 @@ commands.add_command(
|
||||
|
||||
local function process_bot_answers(event)
|
||||
local player = game.players[event.player_index]
|
||||
if player.admin == true then return end
|
||||
if player.admin == true then
|
||||
return
|
||||
end
|
||||
local message = event.message
|
||||
message = string.lower(message)
|
||||
for word in string.gmatch(message, "%g+") do
|
||||
for word in string.gmatch(message, '%g+') do
|
||||
if links[word] then
|
||||
local player = game.players[event.player_index]
|
||||
for _, bot_answer in pairs(links[word]) do
|
||||
player.print("[font=" .. font .. "]" .. bot_answer .. "[/font]", font_color)
|
||||
player.print('[font=' .. font .. ']' .. bot_answer .. '[/font]', font_color)
|
||||
end
|
||||
return
|
||||
end
|
||||
@ -138,22 +173,61 @@ local function process_bot_answers(event)
|
||||
end
|
||||
|
||||
local function on_console_chat(event)
|
||||
if not event.player_index then return end
|
||||
process_bot_answers(event)
|
||||
if not event.player_index then
|
||||
return
|
||||
end
|
||||
process_bot_answers(event)
|
||||
end
|
||||
|
||||
--share vision of silent-commands with other admins
|
||||
local function on_console_command(event)
|
||||
if event.command ~= "silent-command" then return end
|
||||
if not event.player_index then return end
|
||||
local player = game.players[event.player_index]
|
||||
local function on_console_command(event)
|
||||
local cmd = event.command
|
||||
if not event.player_index then
|
||||
return
|
||||
end
|
||||
local player = game.players[event.player_index]
|
||||
local param = event.parameters
|
||||
|
||||
if not player.admin then
|
||||
return
|
||||
end
|
||||
|
||||
for _, p in pairs(game.connected_players) do
|
||||
if p.admin == true and p.name ~= player.name then
|
||||
p.print(player.name .. " did a silent-command: " .. event.parameters, {r=0.22, g=0.99, b=0.99})
|
||||
p.print(player.name .. ' did a silent-command: ' .. event.parameters, {r = 0.22, g = 0.99, b = 0.99})
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
local server_time = Server.get_current_time()
|
||||
if server_time then
|
||||
server_time = format('(Server time: %s)', Timestamp.to_string(server_time))
|
||||
else
|
||||
server_time = '" at tick: ' .. game.tick
|
||||
end
|
||||
|
||||
if string.len(param) <= 0 then
|
||||
param = nil
|
||||
end
|
||||
|
||||
if player then
|
||||
if param then
|
||||
print(player.name .. ' ran: ' .. cmd .. ' "' .. param .. server_time)
|
||||
return
|
||||
else
|
||||
print(player.name .. ' ran: ' .. cmd .. server_time)
|
||||
return
|
||||
end
|
||||
else
|
||||
if param then
|
||||
print('ran: ' .. cmd .. ' "' .. param .. server_time)
|
||||
return
|
||||
else
|
||||
print('ran: ' .. cmd .. server_time)
|
||||
return
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
event.add(defines.events.on_player_created, on_player_created)
|
||||
event.add(defines.events.on_console_chat, on_console_chat)
|
||||
event.add(defines.events.on_console_command, on_console_command)
|
||||
Event.add(defines.events.on_player_created, on_player_created)
|
||||
Event.add(defines.events.on_console_chat, on_console_chat)
|
||||
Event.add(defines.events.on_console_command, on_console_command)
|
||||
|
Loading…
x
Reference in New Issue
Block a user