2019-08-08 18:04:46 +02:00
|
|
|
|
-- Minetest: builtin/game/chat.lua
|
|
|
|
|
|
2021-03-05 16:27:33 +01:00
|
|
|
|
local S = core.get_translator("__builtin")
|
|
|
|
|
|
2019-11-25 20:03:34 +01:00
|
|
|
|
-- Helper function that implements search and replace without pattern matching
|
|
|
|
|
-- Returns the string and a boolean indicating whether or not the string was modified
|
|
|
|
|
local function safe_gsub(s, replace, with)
|
|
|
|
|
local i1, i2 = s:find(replace, 1, true)
|
|
|
|
|
if not i1 then
|
|
|
|
|
return s, false
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
return s:sub(1, i1 - 1) .. with .. s:sub(i2 + 1), true
|
|
|
|
|
end
|
|
|
|
|
|
2019-08-08 18:04:46 +02:00
|
|
|
|
--
|
|
|
|
|
-- Chat message formatter
|
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
-- Implemented in Lua to allow redefinition
|
|
|
|
|
function core.format_chat_message(name, message)
|
|
|
|
|
local error_str = "Invalid chat message format - missing %s"
|
2019-11-25 20:03:34 +01:00
|
|
|
|
local str = core.settings:get("chat_message_format")
|
|
|
|
|
local replaced
|
2019-08-08 18:04:46 +02:00
|
|
|
|
|
2019-11-25 20:03:34 +01:00
|
|
|
|
-- Name
|
|
|
|
|
str, replaced = safe_gsub(str, "@name", name)
|
|
|
|
|
if not replaced then
|
2019-08-08 18:04:46 +02:00
|
|
|
|
error(error_str:format("@name"), 2)
|
|
|
|
|
end
|
|
|
|
|
|
2019-11-25 20:03:34 +01:00
|
|
|
|
-- Timestamp
|
|
|
|
|
str = safe_gsub(str, "@timestamp", os.date("%H:%M:%S", os.time()))
|
|
|
|
|
|
|
|
|
|
-- Insert the message into the string only after finishing all other processing
|
|
|
|
|
str, replaced = safe_gsub(str, "@message", message)
|
|
|
|
|
if not replaced then
|
2019-08-08 18:04:46 +02:00
|
|
|
|
error(error_str:format("@message"), 2)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
return str
|
|
|
|
|
end
|
2012-04-01 11:37:41 +02:00
|
|
|
|
|
|
|
|
|
--
|
2012-04-01 12:08:52 +02:00
|
|
|
|
-- Chat command handler
|
2012-04-01 11:37:41 +02:00
|
|
|
|
--
|
|
|
|
|
|
2016-12-28 14:01:32 +01:00
|
|
|
|
core.chatcommands = core.registered_chatcommands -- BACKWARDS COMPATIBILITY
|
2017-01-20 19:49:20 +01:00
|
|
|
|
|
2021-03-13 11:18:25 +01:00
|
|
|
|
local msg_time_threshold =
|
|
|
|
|
tonumber(core.settings:get("chatcommand_msg_time_threshold")) or 0.1
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.register_on_chat_message(function(name, message)
|
2017-04-08 20:03:57 +02:00
|
|
|
|
if message:sub(1,1) ~= "/" then
|
|
|
|
|
return
|
|
|
|
|
end
|
|
|
|
|
|
2012-04-13 16:20:43 +02:00
|
|
|
|
local cmd, param = string.match(message, "^/([^ ]+) *(.*)")
|
2017-04-08 20:03:57 +02:00
|
|
|
|
if not cmd then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
core.chat_send_player(name, "-!- "..S("Empty command."))
|
2017-04-08 20:03:57 +02:00
|
|
|
|
return true
|
2012-04-01 12:08:52 +02:00
|
|
|
|
end
|
2017-04-08 20:03:57 +02:00
|
|
|
|
|
|
|
|
|
param = param or ""
|
|
|
|
|
|
2020-10-03 18:38:08 +02:00
|
|
|
|
-- Run core.registered_on_chatcommands callbacks.
|
|
|
|
|
if core.run_callbacks(core.registered_on_chatcommands, 5, name, cmd, param) then
|
|
|
|
|
return true
|
|
|
|
|
end
|
|
|
|
|
|
2016-12-28 14:01:32 +01:00
|
|
|
|
local cmd_def = core.registered_chatcommands[cmd]
|
2014-01-30 00:27:05 +01:00
|
|
|
|
if not cmd_def then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
core.chat_send_player(name, "-!- "..S("Invalid command: @1", cmd))
|
2017-04-08 20:03:57 +02:00
|
|
|
|
return true
|
2014-01-30 00:27:05 +01:00
|
|
|
|
end
|
|
|
|
|
local has_privs, missing_privs = core.check_player_privs(name, cmd_def.privs)
|
|
|
|
|
if has_privs then
|
2015-08-12 04:27:54 +02:00
|
|
|
|
core.set_last_run_mod(cmd_def.mod_origin)
|
2021-03-26 20:59:05 +01:00
|
|
|
|
local t_before = core.get_us_time()
|
2020-10-03 18:33:43 +02:00
|
|
|
|
local success, result = cmd_def.func(name, param)
|
2021-03-26 20:59:05 +01:00
|
|
|
|
local delay = (core.get_us_time() - t_before) / 1000000
|
2020-10-03 18:33:43 +02:00
|
|
|
|
if success == false and result == nil then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
core.chat_send_player(name, "-!- "..S("Invalid command usage."))
|
2020-10-03 18:33:43 +02:00
|
|
|
|
local help_def = core.registered_chatcommands["help"]
|
|
|
|
|
if help_def then
|
|
|
|
|
local _, helpmsg = help_def.func(name, cmd)
|
|
|
|
|
if helpmsg then
|
|
|
|
|
core.chat_send_player(name, helpmsg)
|
|
|
|
|
end
|
|
|
|
|
end
|
2021-03-13 11:18:25 +01:00
|
|
|
|
else
|
|
|
|
|
if delay > msg_time_threshold then
|
|
|
|
|
-- Show how much time it took to execute the command
|
|
|
|
|
if result then
|
2021-03-26 20:59:05 +01:00
|
|
|
|
result = result .. core.colorize("#f3d2ff", S(" (@1 s)",
|
|
|
|
|
string.format("%.5f", delay)))
|
2021-03-13 11:18:25 +01:00
|
|
|
|
else
|
2021-03-26 20:59:05 +01:00
|
|
|
|
result = core.colorize("#f3d2ff", S(
|
|
|
|
|
"Command execution took @1 s",
|
|
|
|
|
string.format("%.5f", delay)))
|
2021-03-13 11:18:25 +01:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
if result then
|
|
|
|
|
core.chat_send_player(name, result)
|
|
|
|
|
end
|
2012-04-01 12:08:52 +02:00
|
|
|
|
end
|
2014-01-30 00:27:05 +01:00
|
|
|
|
else
|
2021-03-05 16:27:33 +01:00
|
|
|
|
core.chat_send_player(name,
|
|
|
|
|
S("You don't have permission to run this command "
|
|
|
|
|
.. "(missing privileges: @1).",
|
|
|
|
|
table.concat(missing_privs, ", ")))
|
2012-04-01 12:08:52 +02:00
|
|
|
|
end
|
2014-01-30 00:27:05 +01:00
|
|
|
|
return true -- Handled chat message
|
2012-04-01 12:08:52 +02:00
|
|
|
|
end)
|
|
|
|
|
|
2014-12-12 20:49:19 +01:00
|
|
|
|
if core.settings:get_bool("profiler.load") then
|
2016-07-12 21:51:10 +02:00
|
|
|
|
-- Run after register_chatcommand and its register_on_chat_message
|
2018-06-12 15:39:43 +02:00
|
|
|
|
-- Before any chatcommands that should be profiled
|
2016-07-12 21:51:10 +02:00
|
|
|
|
profiler.init_chatcommand()
|
|
|
|
|
end
|
|
|
|
|
|
2015-09-23 06:31:45 +02:00
|
|
|
|
-- Parses a "range" string in the format of "here (number)" or
|
|
|
|
|
-- "(x1, y1, z1) (x2, y2, z2)", returning two position vectors
|
|
|
|
|
local function parse_range_str(player_name, str)
|
|
|
|
|
local p1, p2
|
|
|
|
|
local args = str:split(" ")
|
|
|
|
|
|
|
|
|
|
if args[1] == "here" then
|
|
|
|
|
p1, p2 = core.get_player_radius_area(player_name, tonumber(args[2]))
|
|
|
|
|
if p1 == nil then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Unable to get position of player @1.", player_name)
|
2015-09-23 06:31:45 +02:00
|
|
|
|
end
|
|
|
|
|
else
|
2022-05-22 16:28:24 +02:00
|
|
|
|
local player = core.get_player_by_name(player_name)
|
|
|
|
|
local relpos
|
|
|
|
|
if player then
|
|
|
|
|
relpos = player:get_pos()
|
|
|
|
|
end
|
|
|
|
|
p1, p2 = core.string_to_area(str, relpos)
|
|
|
|
|
if p1 == nil or p2 == nil then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Incorrect area format. "
|
|
|
|
|
.. "Expected: (x1,y1,z1) (x2,y2,z2)")
|
2015-09-23 06:31:45 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
return p1, p2
|
|
|
|
|
end
|
|
|
|
|
|
2012-04-01 12:08:52 +02:00
|
|
|
|
--
|
|
|
|
|
-- Chat commands
|
|
|
|
|
--
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.register_chatcommand("me", {
|
2021-03-05 16:27:33 +01:00
|
|
|
|
params = S("<action>"),
|
|
|
|
|
description = S("Show chat action (e.g., '/me orders a pizza' "
|
|
|
|
|
.. "displays '<player name> orders a pizza')"),
|
2012-07-22 15:42:43 +02:00
|
|
|
|
privs = {shout=true},
|
|
|
|
|
func = function(name, param)
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.chat_send_all("* " .. name .. " " .. param)
|
2020-03-14 15:01:22 +01:00
|
|
|
|
return true
|
2012-07-22 15:42:43 +02:00
|
|
|
|
end,
|
|
|
|
|
})
|
2012-04-01 12:08:52 +02:00
|
|
|
|
|
2016-02-03 07:09:13 +01:00
|
|
|
|
core.register_chatcommand("admin", {
|
2021-03-05 16:27:33 +01:00
|
|
|
|
description = S("Show the name of the server owner"),
|
2016-02-03 07:09:13 +01:00
|
|
|
|
func = function(name)
|
2018-02-04 19:21:41 +01:00
|
|
|
|
local admin = core.settings:get("name")
|
2016-02-03 07:09:13 +01:00
|
|
|
|
if admin then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return true, S("The administrator of this server is @1.", admin)
|
2016-02-03 07:09:13 +01:00
|
|
|
|
else
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("There's no administrator named "
|
|
|
|
|
.. "in the config file.")
|
2016-02-03 07:09:13 +01:00
|
|
|
|
end
|
|
|
|
|
end,
|
|
|
|
|
})
|
|
|
|
|
|
2021-03-29 19:57:48 +02:00
|
|
|
|
local function privileges_of(name, privs)
|
|
|
|
|
if not privs then
|
|
|
|
|
privs = core.get_player_privs(name)
|
|
|
|
|
end
|
|
|
|
|
local privstr = core.privs_to_string(privs, ", ")
|
|
|
|
|
if privstr == "" then
|
|
|
|
|
return S("@1 does not have any privileges.", name)
|
|
|
|
|
else
|
|
|
|
|
return S("Privileges of @1: @2", name, privstr)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.register_chatcommand("privs", {
|
2021-03-05 16:27:33 +01:00
|
|
|
|
params = S("[<name>]"),
|
|
|
|
|
description = S("Show privileges of yourself or another player"),
|
2016-09-26 20:07:52 +02:00
|
|
|
|
func = function(caller, param)
|
|
|
|
|
param = param:trim()
|
|
|
|
|
local name = (param ~= "" and param or caller)
|
2018-07-16 14:55:04 +02:00
|
|
|
|
if not core.player_exists(name) then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Player @1 does not exist.", name)
|
2018-07-16 14:55:04 +02:00
|
|
|
|
end
|
2021-03-29 19:57:48 +02:00
|
|
|
|
return true, privileges_of(name)
|
2012-04-01 11:37:41 +02:00
|
|
|
|
end,
|
|
|
|
|
})
|
2016-09-27 13:53:01 +02:00
|
|
|
|
|
2018-11-13 20:24:20 +01:00
|
|
|
|
core.register_chatcommand("haspriv", {
|
2021-03-05 16:27:33 +01:00
|
|
|
|
params = S("<privilege>"),
|
|
|
|
|
description = S("Return list of all online players with privilege"),
|
2018-06-12 15:39:43 +02:00
|
|
|
|
privs = {basic_privs = true},
|
|
|
|
|
func = function(caller, param)
|
|
|
|
|
param = param:trim()
|
|
|
|
|
if param == "" then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Invalid parameters (see /help haspriv).")
|
2018-06-12 15:39:43 +02:00
|
|
|
|
end
|
|
|
|
|
if not core.registered_privileges[param] then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Unknown privilege!")
|
2018-06-12 15:39:43 +02:00
|
|
|
|
end
|
|
|
|
|
local privs = core.string_to_privs(param)
|
2018-11-13 20:24:20 +01:00
|
|
|
|
local players_with_priv = {}
|
2018-06-12 15:39:43 +02:00
|
|
|
|
for _, player in pairs(core.get_connected_players()) do
|
|
|
|
|
local player_name = player:get_player_name()
|
|
|
|
|
if core.check_player_privs(player_name, privs) then
|
2018-11-13 20:24:20 +01:00
|
|
|
|
table.insert(players_with_priv, player_name)
|
2018-06-12 15:39:43 +02:00
|
|
|
|
end
|
2019-08-06 20:30:18 +02:00
|
|
|
|
end
|
2021-06-12 18:48:21 +02:00
|
|
|
|
if #players_with_priv == 0 then
|
|
|
|
|
return true, S("No online player has the \"@1\" privilege.",
|
|
|
|
|
param)
|
|
|
|
|
else
|
|
|
|
|
return true, S("Players online with the \"@1\" privilege: @2",
|
|
|
|
|
param,
|
|
|
|
|
table.concat(players_with_priv, ", "))
|
|
|
|
|
end
|
2019-08-06 20:30:18 +02:00
|
|
|
|
end
|
2018-06-12 15:39:43 +02:00
|
|
|
|
})
|
|
|
|
|
|
2016-09-27 13:53:01 +02:00
|
|
|
|
local function handle_grant_command(caller, grantname, grantprivstr)
|
2018-02-04 19:21:41 +01:00
|
|
|
|
local caller_privs = core.get_player_privs(caller)
|
2016-09-27 13:53:01 +02:00
|
|
|
|
if not (caller_privs.privs or caller_privs.basic_privs) then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Your privileges are insufficient.")
|
2016-09-27 13:53:01 +02:00
|
|
|
|
end
|
2016-12-28 14:01:32 +01:00
|
|
|
|
|
2016-12-31 18:12:26 +01:00
|
|
|
|
if not core.get_auth_handler().get_auth(grantname) then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Player @1 does not exist.", grantname)
|
2016-09-27 13:53:01 +02:00
|
|
|
|
end
|
|
|
|
|
local grantprivs = core.string_to_privs(grantprivstr)
|
|
|
|
|
if grantprivstr == "all" then
|
|
|
|
|
grantprivs = core.registered_privileges
|
|
|
|
|
end
|
|
|
|
|
local privs = core.get_player_privs(grantname)
|
|
|
|
|
local privs_unknown = ""
|
|
|
|
|
local basic_privs =
|
2014-12-12 20:49:19 +01:00
|
|
|
|
core.string_to_privs(core.settings:get("basic_privs") or "interact,shout")
|
2016-09-27 13:53:01 +02:00
|
|
|
|
for priv, _ in pairs(grantprivs) do
|
|
|
|
|
if not basic_privs[priv] and not caller_privs.privs then
|
2021-03-29 19:57:48 +02:00
|
|
|
|
return false, S("Your privileges are insufficient. "..
|
|
|
|
|
"'@1' only allows you to grant: @2",
|
|
|
|
|
"basic_privs",
|
|
|
|
|
core.privs_to_string(basic_privs, ', '))
|
2016-09-27 13:53:01 +02:00
|
|
|
|
end
|
|
|
|
|
if not core.registered_privileges[priv] then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
privs_unknown = privs_unknown .. S("Unknown privilege: @1", priv) .. "\n"
|
2016-09-27 13:53:01 +02:00
|
|
|
|
end
|
|
|
|
|
privs[priv] = true
|
|
|
|
|
end
|
|
|
|
|
if privs_unknown ~= "" then
|
|
|
|
|
return false, privs_unknown
|
|
|
|
|
end
|
2021-06-30 20:40:45 +02:00
|
|
|
|
core.set_player_privs(grantname, privs)
|
2017-08-26 08:17:05 +02:00
|
|
|
|
for priv, _ in pairs(grantprivs) do
|
2019-09-29 13:40:15 +02:00
|
|
|
|
-- call the on_grant callbacks
|
2017-08-26 08:17:05 +02:00
|
|
|
|
core.run_priv_callbacks(grantname, priv, caller, "grant")
|
|
|
|
|
end
|
2016-09-27 13:53:01 +02:00
|
|
|
|
core.log("action", caller..' granted ('..core.privs_to_string(grantprivs, ', ')..') privileges to '..grantname)
|
|
|
|
|
if grantname ~= caller then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
core.chat_send_player(grantname,
|
|
|
|
|
S("@1 granted you privileges: @2", caller,
|
2021-03-29 19:57:48 +02:00
|
|
|
|
core.privs_to_string(grantprivs, ', ')))
|
2016-09-27 13:53:01 +02:00
|
|
|
|
end
|
2021-03-29 19:57:48 +02:00
|
|
|
|
return true, privileges_of(grantname)
|
2016-09-27 13:53:01 +02:00
|
|
|
|
end
|
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.register_chatcommand("grant", {
|
2021-03-29 19:57:48 +02:00
|
|
|
|
params = S("<name> (<privilege> [, <privilege2> [<...>]] | all)"),
|
2021-03-05 16:27:33 +01:00
|
|
|
|
description = S("Give privileges to player"),
|
2012-04-01 11:37:41 +02:00
|
|
|
|
func = function(name, param)
|
|
|
|
|
local grantname, grantprivstr = string.match(param, "([^ ]+) (.+)")
|
|
|
|
|
if not grantname or not grantprivstr then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Invalid parameters (see /help grant).")
|
2016-12-28 14:01:32 +01:00
|
|
|
|
end
|
2016-09-27 13:53:01 +02:00
|
|
|
|
return handle_grant_command(name, grantname, grantprivstr)
|
2012-04-01 11:37:41 +02:00
|
|
|
|
end,
|
|
|
|
|
})
|
2016-09-27 13:53:01 +02:00
|
|
|
|
|
|
|
|
|
core.register_chatcommand("grantme", {
|
2021-03-29 19:57:48 +02:00
|
|
|
|
params = S("<privilege> [, <privilege2> [<...>]] | all"),
|
2021-03-05 16:27:33 +01:00
|
|
|
|
description = S("Grant privileges to yourself"),
|
2016-09-27 13:53:01 +02:00
|
|
|
|
func = function(name, param)
|
|
|
|
|
if param == "" then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Invalid parameters (see /help grantme).")
|
2016-12-28 14:01:32 +01:00
|
|
|
|
end
|
2016-09-27 13:53:01 +02:00
|
|
|
|
return handle_grant_command(name, name, param)
|
|
|
|
|
end,
|
|
|
|
|
})
|
|
|
|
|
|
2020-04-26 21:15:05 +02:00
|
|
|
|
local function handle_revoke_command(caller, revokename, revokeprivstr)
|
|
|
|
|
local caller_privs = core.get_player_privs(caller)
|
|
|
|
|
if not (caller_privs.privs or caller_privs.basic_privs) then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Your privileges are insufficient.")
|
2020-04-26 21:15:05 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
if not core.get_auth_handler().get_auth(revokename) then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Player @1 does not exist.", revokename)
|
2020-04-26 21:15:05 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local privs = core.get_player_privs(revokename)
|
|
|
|
|
|
2021-03-29 19:57:48 +02:00
|
|
|
|
local revokeprivs = core.string_to_privs(revokeprivstr)
|
|
|
|
|
local is_singleplayer = core.is_singleplayer()
|
|
|
|
|
local is_admin = not is_singleplayer
|
|
|
|
|
and revokename == core.settings:get("name")
|
|
|
|
|
and revokename ~= ""
|
2020-04-26 21:15:05 +02:00
|
|
|
|
if revokeprivstr == "all" then
|
2022-04-24 21:08:33 +02:00
|
|
|
|
revokeprivs = table.copy(privs)
|
2020-04-26 21:15:05 +02:00
|
|
|
|
end
|
|
|
|
|
|
2021-03-29 19:57:48 +02:00
|
|
|
|
local privs_unknown = ""
|
|
|
|
|
local basic_privs =
|
|
|
|
|
core.string_to_privs(core.settings:get("basic_privs") or "interact,shout")
|
|
|
|
|
local irrevokable = {}
|
|
|
|
|
local has_irrevokable_priv = false
|
|
|
|
|
for priv, _ in pairs(revokeprivs) do
|
|
|
|
|
if not basic_privs[priv] and not caller_privs.privs then
|
|
|
|
|
return false, S("Your privileges are insufficient. "..
|
|
|
|
|
"'@1' only allows you to revoke: @2",
|
|
|
|
|
"basic_privs",
|
|
|
|
|
core.privs_to_string(basic_privs, ', '))
|
|
|
|
|
end
|
|
|
|
|
local def = core.registered_privileges[priv]
|
|
|
|
|
if not def then
|
2022-04-24 21:08:33 +02:00
|
|
|
|
-- Old/removed privileges might still be granted to certain players
|
|
|
|
|
if not privs[priv] then
|
|
|
|
|
privs_unknown = privs_unknown .. S("Unknown privilege: @1", priv) .. "\n"
|
|
|
|
|
end
|
2021-03-29 19:57:48 +02:00
|
|
|
|
elseif is_singleplayer and def.give_to_singleplayer then
|
|
|
|
|
irrevokable[priv] = true
|
|
|
|
|
elseif is_admin and def.give_to_admin then
|
|
|
|
|
irrevokable[priv] = true
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
for priv, _ in pairs(irrevokable) do
|
|
|
|
|
revokeprivs[priv] = nil
|
|
|
|
|
has_irrevokable_priv = true
|
|
|
|
|
end
|
|
|
|
|
if privs_unknown ~= "" then
|
|
|
|
|
return false, privs_unknown
|
|
|
|
|
end
|
|
|
|
|
if has_irrevokable_priv then
|
|
|
|
|
if is_singleplayer then
|
|
|
|
|
core.chat_send_player(caller,
|
|
|
|
|
S("Note: Cannot revoke in singleplayer: @1",
|
|
|
|
|
core.privs_to_string(irrevokable, ', ')))
|
|
|
|
|
elseif is_admin then
|
|
|
|
|
core.chat_send_player(caller,
|
|
|
|
|
S("Note: Cannot revoke from admin: @1",
|
|
|
|
|
core.privs_to_string(irrevokable, ', ')))
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local revokecount = 0
|
2020-04-26 21:15:05 +02:00
|
|
|
|
for priv, _ in pairs(revokeprivs) do
|
2022-04-24 21:08:33 +02:00
|
|
|
|
privs[priv] = nil
|
2021-03-29 19:57:48 +02:00
|
|
|
|
revokecount = revokecount + 1
|
2020-04-26 21:15:05 +02:00
|
|
|
|
end
|
2021-03-29 19:57:48 +02:00
|
|
|
|
|
|
|
|
|
if revokecount == 0 then
|
|
|
|
|
return false, S("No privileges were revoked.")
|
|
|
|
|
end
|
|
|
|
|
|
2022-04-24 21:08:33 +02:00
|
|
|
|
core.set_player_privs(revokename, privs)
|
|
|
|
|
for priv, _ in pairs(revokeprivs) do
|
|
|
|
|
-- call the on_revoke callbacks
|
|
|
|
|
core.run_priv_callbacks(revokename, priv, caller, "revoke")
|
|
|
|
|
end
|
|
|
|
|
local new_privs = core.get_player_privs(revokename)
|
|
|
|
|
|
2020-04-26 21:15:05 +02:00
|
|
|
|
core.log("action", caller..' revoked ('
|
|
|
|
|
..core.privs_to_string(revokeprivs, ', ')
|
|
|
|
|
..') privileges from '..revokename)
|
|
|
|
|
if revokename ~= caller then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
core.chat_send_player(revokename,
|
|
|
|
|
S("@1 revoked privileges from you: @2", caller,
|
2021-03-29 19:57:48 +02:00
|
|
|
|
core.privs_to_string(revokeprivs, ', ')))
|
2020-04-26 21:15:05 +02:00
|
|
|
|
end
|
2021-03-29 19:57:48 +02:00
|
|
|
|
return true, privileges_of(revokename, new_privs)
|
2020-04-26 21:15:05 +02:00
|
|
|
|
end
|
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.register_chatcommand("revoke", {
|
2021-03-29 19:57:48 +02:00
|
|
|
|
params = S("<name> (<privilege> [, <privilege2> [<...>]] | all)"),
|
2021-03-05 16:27:33 +01:00
|
|
|
|
description = S("Remove privileges from player"),
|
2012-04-09 17:57:41 +02:00
|
|
|
|
privs = {},
|
2012-04-01 11:37:41 +02:00
|
|
|
|
func = function(name, param)
|
2020-04-26 21:15:05 +02:00
|
|
|
|
local revokename, revokeprivstr = string.match(param, "([^ ]+) (.+)")
|
|
|
|
|
if not revokename or not revokeprivstr then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Invalid parameters (see /help revoke).")
|
2017-08-26 08:17:05 +02:00
|
|
|
|
end
|
2020-04-26 21:15:05 +02:00
|
|
|
|
return handle_revoke_command(name, revokename, revokeprivstr)
|
|
|
|
|
end,
|
|
|
|
|
})
|
2017-08-26 08:17:05 +02:00
|
|
|
|
|
2020-04-26 21:15:05 +02:00
|
|
|
|
core.register_chatcommand("revokeme", {
|
2021-03-29 19:57:48 +02:00
|
|
|
|
params = S("<privilege> [, <privilege2> [<...>]] | all"),
|
2021-03-05 16:27:33 +01:00
|
|
|
|
description = S("Revoke privileges from yourself"),
|
2020-04-26 21:15:05 +02:00
|
|
|
|
privs = {},
|
|
|
|
|
func = function(name, param)
|
|
|
|
|
if param == "" then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Invalid parameters (see /help revokeme).")
|
2014-01-30 00:27:05 +01:00
|
|
|
|
end
|
2020-04-26 21:15:05 +02:00
|
|
|
|
return handle_revoke_command(name, name, param)
|
2012-04-01 11:37:41 +02:00
|
|
|
|
end,
|
|
|
|
|
})
|
2014-01-30 00:27:05 +01:00
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.register_chatcommand("setpassword", {
|
2021-03-05 16:27:33 +01:00
|
|
|
|
params = S("<name> <password>"),
|
2023-02-18 00:04:52 +01:00
|
|
|
|
description = S("Set player's password (sent unencrypted, thus insecure)"),
|
2012-04-01 11:37:41 +02:00
|
|
|
|
privs = {password=true},
|
|
|
|
|
func = function(name, param)
|
2012-06-16 22:35:11 +02:00
|
|
|
|
local toname, raw_password = string.match(param, "^([^ ]+) +(.+)$")
|
|
|
|
|
if not toname then
|
2014-01-30 00:27:05 +01:00
|
|
|
|
toname = param:match("^([^ ]+) *$")
|
2012-06-16 22:35:11 +02:00
|
|
|
|
raw_password = nil
|
|
|
|
|
end
|
2019-08-06 20:30:18 +02:00
|
|
|
|
|
2012-06-16 22:35:11 +02:00
|
|
|
|
if not toname then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Name field required.")
|
2012-04-01 11:37:41 +02:00
|
|
|
|
end
|
2019-08-06 20:30:18 +02:00
|
|
|
|
|
2021-03-05 16:27:33 +01:00
|
|
|
|
local msg_chat, msg_log, msg_ret
|
2012-06-16 22:35:11 +02:00
|
|
|
|
if not raw_password then
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.set_player_password(toname, "")
|
2021-03-05 16:27:33 +01:00
|
|
|
|
msg_chat = S("Your password was cleared by @1.", name)
|
|
|
|
|
msg_log = name .. " clears password of " .. toname .. "."
|
|
|
|
|
msg_ret = S("Password of player \"@1\" cleared.", toname)
|
2012-06-16 22:35:11 +02:00
|
|
|
|
else
|
2014-01-30 00:27:05 +01:00
|
|
|
|
core.set_player_password(toname,
|
|
|
|
|
core.get_password_hash(toname,
|
|
|
|
|
raw_password))
|
2021-03-05 16:27:33 +01:00
|
|
|
|
msg_chat = S("Your password was set by @1.", name)
|
|
|
|
|
msg_log = name .. " sets password of " .. toname .. "."
|
|
|
|
|
msg_ret = S("Password of player \"@1\" set.", toname)
|
2012-06-16 22:35:11 +02:00
|
|
|
|
end
|
2019-08-06 20:30:18 +02:00
|
|
|
|
|
2012-06-16 22:35:11 +02:00
|
|
|
|
if toname ~= name then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
core.chat_send_player(toname, msg_chat)
|
2012-06-16 22:35:11 +02:00
|
|
|
|
end
|
2015-02-27 22:54:16 +01:00
|
|
|
|
|
2021-03-05 16:27:33 +01:00
|
|
|
|
core.log("action", msg_log)
|
2015-02-27 22:54:16 +01:00
|
|
|
|
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return true, msg_ret
|
2012-04-01 11:37:41 +02:00
|
|
|
|
end,
|
|
|
|
|
})
|
2014-01-30 00:27:05 +01:00
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.register_chatcommand("clearpassword", {
|
2021-03-05 16:27:33 +01:00
|
|
|
|
params = S("<name>"),
|
|
|
|
|
description = S("Set empty password for a player"),
|
2012-04-01 11:37:41 +02:00
|
|
|
|
privs = {password=true},
|
|
|
|
|
func = function(name, param)
|
2014-11-26 13:48:43 +01:00
|
|
|
|
local toname = param
|
2012-11-19 00:18:45 +01:00
|
|
|
|
if toname == "" then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Name field required.")
|
2012-06-16 22:35:11 +02:00
|
|
|
|
end
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.set_player_password(toname, '')
|
2015-02-27 22:54:16 +01:00
|
|
|
|
|
|
|
|
|
core.log("action", name .. " clears password of " .. toname .. ".")
|
|
|
|
|
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return true, S("Password of player \"@1\" cleared.", toname)
|
2012-04-01 11:37:41 +02:00
|
|
|
|
end,
|
|
|
|
|
})
|
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.register_chatcommand("auth_reload", {
|
2012-04-01 11:37:41 +02:00
|
|
|
|
params = "",
|
2021-03-05 16:27:33 +01:00
|
|
|
|
description = S("Reload authentication data"),
|
2012-04-01 11:37:41 +02:00
|
|
|
|
privs = {server=true},
|
|
|
|
|
func = function(name, param)
|
2014-04-28 03:02:48 +02:00
|
|
|
|
local done = core.auth_reload()
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return done, (done and S("Done.") or S("Failed."))
|
2012-04-01 11:37:41 +02:00
|
|
|
|
end,
|
|
|
|
|
})
|
|
|
|
|
|
2017-04-23 14:35:08 +02:00
|
|
|
|
core.register_chatcommand("remove_player", {
|
2021-03-05 16:27:33 +01:00
|
|
|
|
params = S("<name>"),
|
|
|
|
|
description = S("Remove a player's data"),
|
2017-04-23 14:35:08 +02:00
|
|
|
|
privs = {server=true},
|
|
|
|
|
func = function(name, param)
|
|
|
|
|
local toname = param
|
|
|
|
|
if toname == "" then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Name field required.")
|
2017-04-23 14:35:08 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local rc = core.remove_player(toname)
|
|
|
|
|
|
|
|
|
|
if rc == 0 then
|
|
|
|
|
core.log("action", name .. " removed player data of " .. toname .. ".")
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return true, S("Player \"@1\" removed.", toname)
|
2017-04-23 14:35:08 +02:00
|
|
|
|
elseif rc == 1 then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return true, S("No such player \"@1\" to remove.", toname)
|
2017-04-23 14:35:08 +02:00
|
|
|
|
elseif rc == 2 then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return true, S("Player \"@1\" is connected, cannot remove.", toname)
|
2017-04-23 14:35:08 +02:00
|
|
|
|
end
|
|
|
|
|
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Unhandled remove_player return code @1.", tostring(rc))
|
2017-04-23 14:35:08 +02:00
|
|
|
|
end,
|
|
|
|
|
})
|
|
|
|
|
|
2021-02-24 11:46:39 +01:00
|
|
|
|
|
|
|
|
|
-- pos may be a non-integer position
|
|
|
|
|
local function find_free_position_near(pos)
|
|
|
|
|
local tries = {
|
2021-06-04 21:22:33 +02:00
|
|
|
|
vector.new( 1, 0, 0),
|
|
|
|
|
vector.new(-1, 0, 0),
|
|
|
|
|
vector.new( 0, 0, 1),
|
|
|
|
|
vector.new( 0, 0, -1),
|
2021-02-24 11:46:39 +01:00
|
|
|
|
}
|
|
|
|
|
for _, d in ipairs(tries) do
|
|
|
|
|
local p = vector.add(pos, d)
|
|
|
|
|
local n = core.get_node_or_nil(p)
|
|
|
|
|
if n then
|
|
|
|
|
local def = core.registered_nodes[n.name]
|
|
|
|
|
if def and not def.walkable then
|
|
|
|
|
return p
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
return pos
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
-- Teleports player <name> to <p> if possible
|
|
|
|
|
local function teleport_to_pos(name, p)
|
2021-12-17 17:21:14 +01:00
|
|
|
|
local lm = 31007 -- equals MAX_MAP_GENERATION_LIMIT in C++
|
2021-02-24 11:46:39 +01:00
|
|
|
|
if p.x < -lm or p.x > lm or p.y < -lm or p.y > lm
|
|
|
|
|
or p.z < -lm or p.z > lm then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Cannot teleport out of map bounds!")
|
2021-02-24 11:46:39 +01:00
|
|
|
|
end
|
|
|
|
|
local teleportee = core.get_player_by_name(name)
|
|
|
|
|
if not teleportee then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Cannot get player with name @1.", name)
|
2021-02-24 11:46:39 +01:00
|
|
|
|
end
|
|
|
|
|
if teleportee:get_attach() then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Cannot teleport, @1 " ..
|
|
|
|
|
"is attached to an object!", name)
|
2021-02-24 11:46:39 +01:00
|
|
|
|
end
|
|
|
|
|
teleportee:set_pos(p)
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return true, S("Teleporting @1 to @2.", name, core.pos_to_string(p, 1))
|
2021-02-24 11:46:39 +01:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
-- Teleports player <name> next to player <target_name> if possible
|
|
|
|
|
local function teleport_to_player(name, target_name)
|
|
|
|
|
if name == target_name then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("One does not teleport to oneself.")
|
2021-02-24 11:46:39 +01:00
|
|
|
|
end
|
|
|
|
|
local teleportee = core.get_player_by_name(name)
|
|
|
|
|
if not teleportee then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Cannot get teleportee with name @1.", name)
|
2021-02-24 11:46:39 +01:00
|
|
|
|
end
|
|
|
|
|
if teleportee:get_attach() then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Cannot teleport, @1 " ..
|
|
|
|
|
"is attached to an object!", name)
|
2021-02-24 11:46:39 +01:00
|
|
|
|
end
|
|
|
|
|
local target = core.get_player_by_name(target_name)
|
|
|
|
|
if not target then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Cannot get target player with name @1.", target_name)
|
2021-02-24 11:46:39 +01:00
|
|
|
|
end
|
|
|
|
|
local p = find_free_position_near(target:get_pos())
|
|
|
|
|
teleportee:set_pos(p)
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return true, S("Teleporting @1 to @2 at @3.", name, target_name,
|
|
|
|
|
core.pos_to_string(p, 1))
|
2021-02-24 11:46:39 +01:00
|
|
|
|
end
|
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.register_chatcommand("teleport", {
|
2021-03-05 16:27:33 +01:00
|
|
|
|
params = S("<X>,<Y>,<Z> | <to_name> | <name> <X>,<Y>,<Z> | <name> <to_name>"),
|
|
|
|
|
description = S("Teleport to position or player"),
|
2012-04-01 11:37:41 +02:00
|
|
|
|
privs = {teleport=true},
|
|
|
|
|
func = function(name, param)
|
2022-05-22 16:28:24 +02:00
|
|
|
|
local player = core.get_player_by_name(name)
|
|
|
|
|
local relpos
|
|
|
|
|
if player then
|
|
|
|
|
relpos = player:get_pos()
|
|
|
|
|
end
|
2012-04-01 11:37:41 +02:00
|
|
|
|
local p = {}
|
2022-05-22 16:28:24 +02:00
|
|
|
|
p.x, p.y, p.z = string.match(param, "^([%d.~-]+)[, ] *([%d.~-]+)[, ] *([%d.~-]+)$")
|
|
|
|
|
p = core.parse_coordinates(p.x, p.y, p.z, relpos)
|
|
|
|
|
if p and p.x and p.y and p.z then
|
2021-02-24 11:46:39 +01:00
|
|
|
|
return teleport_to_pos(name, p)
|
2012-04-01 11:37:41 +02:00
|
|
|
|
end
|
2015-05-16 14:54:53 +02:00
|
|
|
|
|
2019-08-06 20:30:18 +02:00
|
|
|
|
local target_name = param:match("^([^ ]+)$")
|
2012-04-01 11:37:41 +02:00
|
|
|
|
if target_name then
|
2021-02-24 11:46:39 +01:00
|
|
|
|
return teleport_to_player(name, target_name)
|
2012-04-01 11:37:41 +02:00
|
|
|
|
end
|
2019-08-06 20:30:18 +02:00
|
|
|
|
|
2021-02-24 11:46:39 +01:00
|
|
|
|
local has_bring_priv = core.check_player_privs(name, {bring=true})
|
2021-03-05 16:27:33 +01:00
|
|
|
|
local missing_bring_msg = S("You don't have permission to teleport " ..
|
|
|
|
|
"other players (missing privilege: @1).", "bring")
|
2014-10-05 17:35:10 +02:00
|
|
|
|
|
2019-08-06 20:30:18 +02:00
|
|
|
|
local teleportee_name
|
2022-05-22 16:28:24 +02:00
|
|
|
|
p = {}
|
2014-10-05 17:35:10 +02:00
|
|
|
|
teleportee_name, p.x, p.y, p.z = param:match(
|
2022-05-22 16:28:24 +02:00
|
|
|
|
"^([^ ]+) +([%d.~-]+)[, ] *([%d.~-]+)[, ] *([%d.~-]+)$")
|
|
|
|
|
if teleportee_name then
|
|
|
|
|
local teleportee = core.get_player_by_name(teleportee_name)
|
|
|
|
|
if not teleportee then
|
|
|
|
|
return
|
|
|
|
|
end
|
|
|
|
|
relpos = teleportee:get_pos()
|
|
|
|
|
p = core.parse_coordinates(p.x, p.y, p.z, relpos)
|
|
|
|
|
end
|
2021-02-24 11:46:39 +01:00
|
|
|
|
p = vector.apply(p, tonumber)
|
2022-05-22 16:28:24 +02:00
|
|
|
|
|
2021-02-24 11:46:39 +01:00
|
|
|
|
if teleportee_name and p.x and p.y and p.z then
|
|
|
|
|
if not has_bring_priv then
|
|
|
|
|
return false, missing_bring_msg
|
2020-05-16 21:41:41 +02:00
|
|
|
|
end
|
2021-02-24 11:46:39 +01:00
|
|
|
|
return teleport_to_pos(teleportee_name, p)
|
2014-10-05 17:35:10 +02:00
|
|
|
|
end
|
2015-05-16 14:54:53 +02:00
|
|
|
|
|
2014-10-05 17:35:10 +02:00
|
|
|
|
teleportee_name, target_name = string.match(param, "^([^ ]+) +([^ ]+)$")
|
2021-02-24 11:46:39 +01:00
|
|
|
|
if teleportee_name and target_name then
|
|
|
|
|
if not has_bring_priv then
|
|
|
|
|
return false, missing_bring_msg
|
2020-05-16 21:41:41 +02:00
|
|
|
|
end
|
2021-02-24 11:46:39 +01:00
|
|
|
|
return teleport_to_player(teleportee_name, target_name)
|
2014-10-05 17:35:10 +02:00
|
|
|
|
end
|
2015-05-16 14:54:53 +02:00
|
|
|
|
|
2021-02-24 11:46:39 +01:00
|
|
|
|
return false
|
2012-04-01 11:37:41 +02:00
|
|
|
|
end,
|
|
|
|
|
})
|
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.register_chatcommand("set", {
|
2021-03-05 16:27:33 +01:00
|
|
|
|
params = S("([-n] <name> <value>) | <name>"),
|
|
|
|
|
description = S("Set or read server configuration setting"),
|
2012-04-01 12:08:52 +02:00
|
|
|
|
privs = {server=true},
|
|
|
|
|
func = function(name, param)
|
|
|
|
|
local arg, setname, setvalue = string.match(param, "(-[n]) ([^ ]+) (.+)")
|
2012-04-09 22:29:55 +02:00
|
|
|
|
if arg and arg == "-n" and setname and setvalue then
|
2014-12-12 20:49:19 +01:00
|
|
|
|
core.settings:set(setname, setvalue)
|
2014-01-30 00:27:05 +01:00
|
|
|
|
return true, setname .. " = " .. setvalue
|
2012-04-01 12:08:52 +02:00
|
|
|
|
end
|
2019-08-06 20:30:18 +02:00
|
|
|
|
|
|
|
|
|
setname, setvalue = string.match(param, "([^ ]+) (.+)")
|
2012-04-01 12:08:52 +02:00
|
|
|
|
if setname and setvalue then
|
2022-04-16 18:50:36 +02:00
|
|
|
|
if setname:sub(1, 7) == "secure." then
|
|
|
|
|
return false, S("Failed. Cannot modify secure settings. "
|
|
|
|
|
.. "Edit the settings file manually.")
|
|
|
|
|
end
|
2014-12-12 20:49:19 +01:00
|
|
|
|
if not core.settings:get(setname) then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Failed. Use '/set -n <name> <value>' "
|
|
|
|
|
.. "to create a new setting.")
|
2012-04-01 11:37:41 +02:00
|
|
|
|
end
|
2014-12-12 20:49:19 +01:00
|
|
|
|
core.settings:set(setname, setvalue)
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return true, S("@1 = @2", setname, setvalue)
|
2012-04-01 11:37:41 +02:00
|
|
|
|
end
|
2019-08-06 20:30:18 +02:00
|
|
|
|
|
|
|
|
|
setname = string.match(param, "([^ ]+)")
|
2012-04-01 12:08:52 +02:00
|
|
|
|
if setname then
|
2019-08-06 20:30:18 +02:00
|
|
|
|
setvalue = core.settings:get(setname)
|
2012-04-01 12:08:52 +02:00
|
|
|
|
if not setvalue then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
setvalue = S("<not set>")
|
2012-04-01 12:08:52 +02:00
|
|
|
|
end
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return true, S("@1 = @2", setname, setvalue)
|
2012-04-01 12:08:52 +02:00
|
|
|
|
end
|
2019-08-06 20:30:18 +02:00
|
|
|
|
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Invalid parameters (see /help set).")
|
2012-04-01 12:08:52 +02:00
|
|
|
|
end,
|
|
|
|
|
})
|
2012-04-01 11:37:41 +02:00
|
|
|
|
|
2015-10-30 07:48:37 +01:00
|
|
|
|
local function emergeblocks_callback(pos, action, num_calls_remaining, ctx)
|
|
|
|
|
if ctx.total_blocks == 0 then
|
|
|
|
|
ctx.total_blocks = num_calls_remaining + 1
|
|
|
|
|
ctx.current_blocks = 0
|
|
|
|
|
end
|
|
|
|
|
ctx.current_blocks = ctx.current_blocks + 1
|
|
|
|
|
|
|
|
|
|
if ctx.current_blocks == ctx.total_blocks then
|
|
|
|
|
core.chat_send_player(ctx.requestor_name,
|
2021-03-05 16:27:33 +01:00
|
|
|
|
S("Finished emerging @1 blocks in @2ms.",
|
|
|
|
|
ctx.total_blocks,
|
|
|
|
|
string.format("%.2f", (os.clock() - ctx.start_time) * 1000)))
|
2015-10-30 07:48:37 +01:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function emergeblocks_progress_update(ctx)
|
|
|
|
|
if ctx.current_blocks ~= ctx.total_blocks then
|
|
|
|
|
core.chat_send_player(ctx.requestor_name,
|
2021-03-05 16:27:33 +01:00
|
|
|
|
S("emergeblocks update: @1/@2 blocks emerged (@3%)",
|
2015-10-30 07:48:37 +01:00
|
|
|
|
ctx.current_blocks, ctx.total_blocks,
|
2021-03-05 16:27:33 +01:00
|
|
|
|
string.format("%.1f", (ctx.current_blocks / ctx.total_blocks) * 100)))
|
2015-10-30 07:48:37 +01:00
|
|
|
|
|
|
|
|
|
core.after(2, emergeblocks_progress_update, ctx)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2015-09-23 06:31:45 +02:00
|
|
|
|
core.register_chatcommand("emergeblocks", {
|
2021-03-05 16:27:33 +01:00
|
|
|
|
params = S("(here [<radius>]) | (<pos1> <pos2>)"),
|
|
|
|
|
description = S("Load (or, if nonexistent, generate) map blocks contained in "
|
|
|
|
|
.. "area pos1 to pos2 (<pos1> and <pos2> must be in parentheses)"),
|
2015-01-15 22:20:05 +01:00
|
|
|
|
privs = {server=true},
|
|
|
|
|
func = function(name, param)
|
2015-09-23 06:31:45 +02:00
|
|
|
|
local p1, p2 = parse_range_str(name, param)
|
|
|
|
|
if p1 == false then
|
|
|
|
|
return false, p2
|
|
|
|
|
end
|
2015-01-28 04:36:53 +01:00
|
|
|
|
|
2015-10-30 07:48:37 +01:00
|
|
|
|
local context = {
|
|
|
|
|
current_blocks = 0,
|
|
|
|
|
total_blocks = 0,
|
|
|
|
|
start_time = os.clock(),
|
|
|
|
|
requestor_name = name
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
core.emerge_area(p1, p2, emergeblocks_callback, context)
|
|
|
|
|
core.after(2, emergeblocks_progress_update, context)
|
|
|
|
|
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return true, S("Started emerge of area ranging from @1 to @2.",
|
|
|
|
|
core.pos_to_string(p1, 1), core.pos_to_string(p2, 1))
|
2015-09-23 06:31:45 +02:00
|
|
|
|
end,
|
|
|
|
|
})
|
2015-01-15 22:20:05 +01:00
|
|
|
|
|
2015-09-23 06:31:45 +02:00
|
|
|
|
core.register_chatcommand("deleteblocks", {
|
2021-03-05 16:27:33 +01:00
|
|
|
|
params = S("(here [<radius>]) | (<pos1> <pos2>)"),
|
|
|
|
|
description = S("Delete map blocks contained in area pos1 to pos2 "
|
|
|
|
|
.. "(<pos1> and <pos2> must be in parentheses)"),
|
2015-09-23 06:31:45 +02:00
|
|
|
|
privs = {server=true},
|
|
|
|
|
func = function(name, param)
|
|
|
|
|
local p1, p2 = parse_range_str(name, param)
|
|
|
|
|
if p1 == false then
|
|
|
|
|
return false, p2
|
2015-01-15 22:20:05 +01:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
if core.delete_area(p1, p2) then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return true, S("Successfully cleared area "
|
|
|
|
|
.. "ranging from @1 to @2.",
|
|
|
|
|
core.pos_to_string(p1, 1), core.pos_to_string(p2, 1))
|
2015-01-15 22:20:05 +01:00
|
|
|
|
else
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Failed to clear one or more "
|
|
|
|
|
.. "blocks in area.")
|
2015-01-15 22:20:05 +01:00
|
|
|
|
end
|
|
|
|
|
end,
|
|
|
|
|
})
|
|
|
|
|
|
2017-04-21 12:56:10 +02:00
|
|
|
|
core.register_chatcommand("fixlight", {
|
2021-03-05 16:27:33 +01:00
|
|
|
|
params = S("(here [<radius>]) | (<pos1> <pos2>)"),
|
|
|
|
|
description = S("Resets lighting in the area between pos1 and pos2 "
|
|
|
|
|
.. "(<pos1> and <pos2> must be in parentheses)"),
|
2017-04-21 12:56:10 +02:00
|
|
|
|
privs = {server = true},
|
|
|
|
|
func = function(name, param)
|
|
|
|
|
local p1, p2 = parse_range_str(name, param)
|
|
|
|
|
if p1 == false then
|
|
|
|
|
return false, p2
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
if core.fix_light(p1, p2) then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return true, S("Successfully reset light in the area "
|
|
|
|
|
.. "ranging from @1 to @2.",
|
|
|
|
|
core.pos_to_string(p1, 1), core.pos_to_string(p2, 1))
|
2017-04-21 12:56:10 +02:00
|
|
|
|
else
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Failed to load one or more blocks in area.")
|
2017-04-21 12:56:10 +02:00
|
|
|
|
end
|
|
|
|
|
end,
|
|
|
|
|
})
|
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.register_chatcommand("mods", {
|
2012-07-22 03:41:27 +02:00
|
|
|
|
params = "",
|
2021-03-05 16:27:33 +01:00
|
|
|
|
description = S("List mods installed on the server"),
|
2012-07-22 03:41:27 +02:00
|
|
|
|
privs = {},
|
|
|
|
|
func = function(name, param)
|
2021-06-12 18:48:21 +02:00
|
|
|
|
local mods = core.get_modnames()
|
|
|
|
|
if #mods == 0 then
|
|
|
|
|
return true, S("No mods installed.")
|
|
|
|
|
else
|
|
|
|
|
return true, table.concat(core.get_modnames(), ", ")
|
|
|
|
|
end
|
2012-07-22 03:41:27 +02:00
|
|
|
|
end,
|
2012-07-23 16:43:08 +02:00
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
local function handle_give_command(cmd, giver, receiver, stackstring)
|
2014-01-30 00:27:05 +01:00
|
|
|
|
core.log("action", giver .. " invoked " .. cmd
|
|
|
|
|
.. ', stackstring="' .. stackstring .. '"')
|
2012-07-23 16:43:08 +02:00
|
|
|
|
local itemstack = ItemStack(stackstring)
|
|
|
|
|
if itemstack:is_empty() then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Cannot give an empty item.")
|
2018-05-20 14:51:26 +02:00
|
|
|
|
elseif (not itemstack:is_known()) or (itemstack:get_name() == "unknown") then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Cannot give an unknown item.")
|
2018-05-20 14:51:26 +02:00
|
|
|
|
-- Forbid giving 'ignore' due to unwanted side effects
|
|
|
|
|
elseif itemstack:get_name() == "ignore" then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Giving 'ignore' is not allowed.")
|
2012-07-23 16:43:08 +02:00
|
|
|
|
end
|
2014-04-28 03:02:48 +02:00
|
|
|
|
local receiverref = core.get_player_by_name(receiver)
|
2012-07-23 16:43:08 +02:00
|
|
|
|
if receiverref == nil then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("@1 is not a known player.", receiver)
|
2012-07-23 16:43:08 +02:00
|
|
|
|
end
|
|
|
|
|
local leftover = receiverref:get_inventory():add_item("main", itemstack)
|
2014-11-26 13:48:43 +01:00
|
|
|
|
local partiality
|
2012-07-23 16:43:08 +02:00
|
|
|
|
if leftover:is_empty() then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
partiality = nil
|
2012-07-23 16:43:08 +02:00
|
|
|
|
elseif leftover:get_count() == itemstack:get_count() then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
partiality = false
|
2012-07-23 16:43:08 +02:00
|
|
|
|
else
|
2021-03-05 16:27:33 +01:00
|
|
|
|
partiality = true
|
2012-07-23 16:43:08 +02:00
|
|
|
|
end
|
|
|
|
|
-- The actual item stack string may be different from what the "giver"
|
|
|
|
|
-- entered (e.g. big numbers are always interpreted as 2^16-1).
|
|
|
|
|
stackstring = itemstack:to_string()
|
2021-03-05 16:27:33 +01:00
|
|
|
|
local msg
|
|
|
|
|
if partiality == true then
|
|
|
|
|
msg = S("@1 partially added to inventory.", stackstring)
|
|
|
|
|
elseif partiality == false then
|
|
|
|
|
msg = S("@1 could not be added to inventory.", stackstring)
|
|
|
|
|
else
|
|
|
|
|
msg = S("@1 added to inventory.", stackstring)
|
|
|
|
|
end
|
2012-07-23 16:43:08 +02:00
|
|
|
|
if giver == receiver then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return true, msg
|
2012-07-23 16:43:08 +02:00
|
|
|
|
else
|
2021-03-05 16:27:33 +01:00
|
|
|
|
core.chat_send_player(receiver, msg)
|
|
|
|
|
local msg_other
|
|
|
|
|
if partiality == true then
|
|
|
|
|
msg_other = S("@1 partially added to inventory of @2.",
|
|
|
|
|
stackstring, receiver)
|
|
|
|
|
elseif partiality == false then
|
|
|
|
|
msg_other = S("@1 could not be added to inventory of @2.",
|
|
|
|
|
stackstring, receiver)
|
|
|
|
|
else
|
|
|
|
|
msg_other = S("@1 added to inventory of @2.",
|
|
|
|
|
stackstring, receiver)
|
|
|
|
|
end
|
|
|
|
|
return true, msg_other
|
2012-07-23 16:43:08 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.register_chatcommand("give", {
|
2021-03-05 16:27:33 +01:00
|
|
|
|
params = S("<name> <ItemString> [<count> [<wear>]]"),
|
|
|
|
|
description = S("Give item to player"),
|
2012-07-23 16:43:08 +02:00
|
|
|
|
privs = {give=true},
|
|
|
|
|
func = function(name, param)
|
|
|
|
|
local toname, itemstring = string.match(param, "^([^ ]+) +(.+)$")
|
|
|
|
|
if not toname or not itemstring then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Name and ItemString required.")
|
2012-07-23 16:43:08 +02:00
|
|
|
|
end
|
2014-01-30 00:27:05 +01:00
|
|
|
|
return handle_give_command("/give", name, toname, itemstring)
|
2012-07-23 16:43:08 +02:00
|
|
|
|
end,
|
|
|
|
|
})
|
2014-01-30 00:27:05 +01:00
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.register_chatcommand("giveme", {
|
2021-03-05 16:27:33 +01:00
|
|
|
|
params = S("<ItemString> [<count> [<wear>]]"),
|
|
|
|
|
description = S("Give item to yourself"),
|
2012-07-23 16:43:08 +02:00
|
|
|
|
privs = {give=true},
|
|
|
|
|
func = function(name, param)
|
|
|
|
|
local itemstring = string.match(param, "(.+)$")
|
|
|
|
|
if not itemstring then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("ItemString required.")
|
2012-07-23 16:43:08 +02:00
|
|
|
|
end
|
2014-01-30 00:27:05 +01:00
|
|
|
|
return handle_give_command("/giveme", name, name, itemstring)
|
2012-07-23 16:43:08 +02:00
|
|
|
|
end,
|
|
|
|
|
})
|
2014-01-30 00:27:05 +01:00
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.register_chatcommand("spawnentity", {
|
2021-03-05 16:27:33 +01:00
|
|
|
|
params = S("<EntityName> [<X>,<Y>,<Z>]"),
|
|
|
|
|
description = S("Spawn entity at given (or your) position"),
|
2012-07-23 16:43:08 +02:00
|
|
|
|
privs = {give=true, interact=true},
|
|
|
|
|
func = function(name, param)
|
2022-05-22 16:28:24 +02:00
|
|
|
|
local entityname, pstr = string.match(param, "^([^ ]+) *(.*)$")
|
2012-07-23 16:43:08 +02:00
|
|
|
|
if not entityname then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("EntityName required.")
|
2012-07-23 16:43:08 +02:00
|
|
|
|
end
|
2015-06-25 18:14:01 +02:00
|
|
|
|
core.log("action", ("%s invokes /spawnentity, entityname=%q")
|
|
|
|
|
:format(name, entityname))
|
2014-04-28 03:02:48 +02:00
|
|
|
|
local player = core.get_player_by_name(name)
|
2012-07-23 16:43:08 +02:00
|
|
|
|
if player == nil then
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.log("error", "Unable to spawn entity, player is nil")
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Unable to spawn entity, player is nil.")
|
2012-07-23 16:43:08 +02:00
|
|
|
|
end
|
2018-02-04 19:21:41 +01:00
|
|
|
|
if not core.registered_entities[entityname] then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Cannot spawn an unknown entity.")
|
2017-09-08 18:39:02 +02:00
|
|
|
|
end
|
2022-05-22 16:28:24 +02:00
|
|
|
|
local p
|
|
|
|
|
if pstr == "" then
|
2018-07-17 20:17:54 +02:00
|
|
|
|
p = player:get_pos()
|
2015-06-25 18:14:01 +02:00
|
|
|
|
else
|
2022-05-22 16:28:24 +02:00
|
|
|
|
p = {}
|
|
|
|
|
p.x, p.y, p.z = string.match(pstr, "^([%d.~-]+)[, ] *([%d.~-]+)[, ] *([%d.~-]+)$")
|
|
|
|
|
local relpos = player:get_pos()
|
|
|
|
|
p = core.parse_coordinates(p.x, p.y, p.z, relpos)
|
|
|
|
|
if not (p and p.x and p.y and p.z) then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Invalid parameters (@1).", param)
|
2015-06-25 18:14:01 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
2012-07-23 16:43:08 +02:00
|
|
|
|
p.y = p.y + 1
|
2020-04-26 20:34:10 +02:00
|
|
|
|
local obj = core.add_entity(p, entityname)
|
2021-03-05 16:27:33 +01:00
|
|
|
|
if obj then
|
|
|
|
|
return true, S("@1 spawned.", entityname)
|
|
|
|
|
else
|
|
|
|
|
return true, S("@1 failed to spawn.", entityname)
|
|
|
|
|
end
|
2012-07-23 16:43:08 +02:00
|
|
|
|
end,
|
|
|
|
|
})
|
2014-01-30 00:27:05 +01:00
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.register_chatcommand("pulverize", {
|
2012-07-23 16:43:08 +02:00
|
|
|
|
params = "",
|
2021-03-05 16:27:33 +01:00
|
|
|
|
description = S("Destroy item in hand"),
|
2012-07-23 16:43:08 +02:00
|
|
|
|
func = function(name, param)
|
2014-04-28 03:02:48 +02:00
|
|
|
|
local player = core.get_player_by_name(name)
|
2014-01-30 00:27:05 +01:00
|
|
|
|
if not player then
|
|
|
|
|
core.log("error", "Unable to pulverize, no player.")
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Unable to pulverize, no player.")
|
2012-07-23 16:43:08 +02:00
|
|
|
|
end
|
2018-06-30 12:53:43 +02:00
|
|
|
|
local wielded_item = player:get_wielded_item()
|
|
|
|
|
if wielded_item:is_empty() then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Unable to pulverize, no item in hand.")
|
2012-07-23 16:43:08 +02:00
|
|
|
|
end
|
2018-06-30 12:53:43 +02:00
|
|
|
|
core.log("action", name .. " pulverized \"" ..
|
|
|
|
|
wielded_item:get_name() .. " " .. wielded_item:get_count() .. "\"")
|
2019-08-06 20:30:18 +02:00
|
|
|
|
player:set_wielded_item(nil)
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return true, S("An item was pulverized.")
|
2012-07-23 16:43:08 +02:00
|
|
|
|
end,
|
|
|
|
|
})
|
|
|
|
|
|
2012-07-26 21:06:45 +02:00
|
|
|
|
-- Key = player name
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.rollback_punch_callbacks = {}
|
2012-07-26 21:06:45 +02:00
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.register_on_punchnode(function(pos, node, puncher)
|
2017-10-28 10:30:50 +02:00
|
|
|
|
local name = puncher and puncher:get_player_name()
|
|
|
|
|
if name and core.rollback_punch_callbacks[name] then
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.rollback_punch_callbacks[name](pos, node, puncher)
|
|
|
|
|
core.rollback_punch_callbacks[name] = nil
|
2012-07-26 21:06:45 +02:00
|
|
|
|
end
|
|
|
|
|
end)
|
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.register_chatcommand("rollback_check", {
|
2021-03-05 16:27:33 +01:00
|
|
|
|
params = S("[<range>] [<seconds>] [<limit>]"),
|
|
|
|
|
description = S("Check who last touched a node or a node near it "
|
|
|
|
|
.. "within the time specified by <seconds>. "
|
|
|
|
|
.. "Default: range = 0, seconds = 86400 = 24h, limit = 5. "
|
|
|
|
|
.. "Set <seconds> to inf for no time limit"),
|
2012-07-26 21:06:45 +02:00
|
|
|
|
privs = {rollback=true},
|
|
|
|
|
func = function(name, param)
|
2014-12-12 20:49:19 +01:00
|
|
|
|
if not core.settings:get_bool("enable_rollback_recording") then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Rollback functions are disabled.")
|
2015-02-17 20:09:36 +01:00
|
|
|
|
end
|
2013-11-12 22:13:00 +01:00
|
|
|
|
local range, seconds, limit =
|
|
|
|
|
param:match("(%d+) *(%d*) *(%d*)")
|
2012-07-26 21:06:45 +02:00
|
|
|
|
range = tonumber(range) or 0
|
|
|
|
|
seconds = tonumber(seconds) or 86400
|
2013-11-12 22:13:00 +01:00
|
|
|
|
limit = tonumber(limit) or 5
|
|
|
|
|
if limit > 100 then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("That limit is too high!")
|
2013-11-12 22:13:00 +01:00
|
|
|
|
end
|
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.rollback_punch_callbacks[name] = function(pos, node, puncher)
|
2012-07-26 21:06:45 +02:00
|
|
|
|
local name = puncher:get_player_name()
|
2021-03-05 16:27:33 +01:00
|
|
|
|
core.chat_send_player(name, S("Checking @1 ...", core.pos_to_string(pos)))
|
2014-04-28 03:02:48 +02:00
|
|
|
|
local actions = core.rollback_get_node_actions(pos, range, seconds, limit)
|
2015-02-17 20:09:36 +01:00
|
|
|
|
if not actions then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
core.chat_send_player(name, S("Rollback functions are disabled."))
|
2015-02-17 20:09:36 +01:00
|
|
|
|
return
|
|
|
|
|
end
|
2013-11-12 22:13:00 +01:00
|
|
|
|
local num_actions = #actions
|
|
|
|
|
if num_actions == 0 then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
core.chat_send_player(name,
|
|
|
|
|
S("Nobody has touched the specified "
|
|
|
|
|
.. "location in @1 seconds.",
|
|
|
|
|
seconds))
|
2012-07-26 21:06:45 +02:00
|
|
|
|
return
|
|
|
|
|
end
|
2013-11-12 22:13:00 +01:00
|
|
|
|
local time = os.time()
|
|
|
|
|
for i = num_actions, 1, -1 do
|
|
|
|
|
local action = actions[i]
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.chat_send_player(name,
|
2021-03-05 16:27:33 +01:00
|
|
|
|
S("@1 @2 @3 -> @4 @5 seconds ago.",
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.pos_to_string(action.pos),
|
2013-11-12 22:13:00 +01:00
|
|
|
|
action.actor,
|
|
|
|
|
action.oldnode.name,
|
|
|
|
|
action.newnode.name,
|
|
|
|
|
time - action.time))
|
2012-07-26 21:06:45 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
2014-01-30 00:27:05 +01:00
|
|
|
|
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return true, S("Punch a node (range=@1, seconds=@2, limit=@3).",
|
|
|
|
|
range, seconds, limit)
|
2012-07-26 21:06:45 +02:00
|
|
|
|
end,
|
|
|
|
|
})
|
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.register_chatcommand("rollback", {
|
2021-03-05 16:27:33 +01:00
|
|
|
|
params = S("(<name> [<seconds>]) | (:<actor> [<seconds>])"),
|
|
|
|
|
description = S("Revert actions of a player. "
|
|
|
|
|
.. "Default for <seconds> is 60. "
|
|
|
|
|
.. "Set <seconds> to inf for no time limit"),
|
2012-07-26 21:06:45 +02:00
|
|
|
|
privs = {rollback=true},
|
|
|
|
|
func = function(name, param)
|
2014-12-12 20:49:19 +01:00
|
|
|
|
if not core.settings:get_bool("enable_rollback_recording") then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Rollback functions are disabled.")
|
2015-02-17 20:09:36 +01:00
|
|
|
|
end
|
2012-07-26 21:06:45 +02:00
|
|
|
|
local target_name, seconds = string.match(param, ":([^ ]+) *(%d*)")
|
2021-03-05 16:27:33 +01:00
|
|
|
|
local rev_msg
|
2012-07-26 21:06:45 +02:00
|
|
|
|
if not target_name then
|
2019-08-06 20:30:18 +02:00
|
|
|
|
local player_name
|
2012-07-26 21:06:45 +02:00
|
|
|
|
player_name, seconds = string.match(param, "([^ ]+) *(%d*)")
|
|
|
|
|
if not player_name then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Invalid parameters. "
|
|
|
|
|
.. "See /help rollback and "
|
|
|
|
|
.. "/help rollback_check.")
|
2012-07-26 21:06:45 +02:00
|
|
|
|
end
|
2021-03-05 16:27:33 +01:00
|
|
|
|
seconds = tonumber(seconds) or 60
|
2012-07-26 21:06:45 +02:00
|
|
|
|
target_name = "player:"..player_name
|
2021-03-05 16:27:33 +01:00
|
|
|
|
rev_msg = S("Reverting actions of player '@1' since @2 seconds.",
|
|
|
|
|
player_name, seconds)
|
|
|
|
|
else
|
|
|
|
|
seconds = tonumber(seconds) or 60
|
|
|
|
|
rev_msg = S("Reverting actions of @1 since @2 seconds.",
|
|
|
|
|
target_name, seconds)
|
2012-07-26 21:06:45 +02:00
|
|
|
|
end
|
2021-03-05 16:27:33 +01:00
|
|
|
|
core.chat_send_player(name, rev_msg)
|
2014-04-28 03:02:48 +02:00
|
|
|
|
local success, log = core.rollback_revert_actions_by(
|
2012-07-26 21:06:45 +02:00
|
|
|
|
target_name, seconds)
|
2014-01-30 00:27:05 +01:00
|
|
|
|
local response = ""
|
2013-11-12 22:13:00 +01:00
|
|
|
|
if #log > 100 then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
response = S("(log is too long to show)").."\n"
|
2012-07-27 12:24:28 +02:00
|
|
|
|
else
|
2013-11-12 22:13:00 +01:00
|
|
|
|
for _, line in pairs(log) do
|
2014-01-30 00:27:05 +01:00
|
|
|
|
response = response .. line .. "\n"
|
2012-07-27 12:24:28 +02:00
|
|
|
|
end
|
2012-07-26 21:06:45 +02:00
|
|
|
|
end
|
2021-03-05 16:27:33 +01:00
|
|
|
|
if success then
|
|
|
|
|
response = response .. S("Reverting actions succeeded.")
|
|
|
|
|
else
|
|
|
|
|
response = response .. S("Reverting actions FAILED.")
|
|
|
|
|
end
|
2014-01-30 00:27:05 +01:00
|
|
|
|
return success, response
|
2012-07-26 21:06:45 +02:00
|
|
|
|
end,
|
|
|
|
|
})
|
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.register_chatcommand("status", {
|
2021-03-05 16:27:33 +01:00
|
|
|
|
description = S("Show server status"),
|
2012-07-22 15:42:43 +02:00
|
|
|
|
func = function(name, param)
|
2018-07-01 12:31:28 +02:00
|
|
|
|
local status = core.get_server_status(name, false)
|
|
|
|
|
if status and status ~= "" then
|
|
|
|
|
return true, status
|
|
|
|
|
end
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("This command was disabled by a mod or game.")
|
2012-07-22 15:42:43 +02:00
|
|
|
|
end,
|
|
|
|
|
})
|
|
|
|
|
|
2022-05-22 16:28:24 +02:00
|
|
|
|
local function get_time(timeofday)
|
|
|
|
|
local time = math.floor(timeofday * 1440)
|
|
|
|
|
local minute = time % 60
|
|
|
|
|
local hour = (time - minute) / 60
|
|
|
|
|
return time, hour, minute
|
|
|
|
|
end
|
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.register_chatcommand("time", {
|
2021-03-05 16:27:33 +01:00
|
|
|
|
params = S("[<0..23>:<0..59> | <0..24000>]"),
|
|
|
|
|
description = S("Show or set time of day"),
|
2015-05-16 14:54:53 +02:00
|
|
|
|
privs = {},
|
2012-07-22 15:42:43 +02:00
|
|
|
|
func = function(name, param)
|
|
|
|
|
if param == "" then
|
2015-05-16 14:54:53 +02:00
|
|
|
|
local current_time = math.floor(core.get_timeofday() * 1440)
|
|
|
|
|
local minutes = current_time % 60
|
|
|
|
|
local hour = (current_time - minutes) / 60
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return true, S("Current time is @1:@2.",
|
|
|
|
|
string.format("%d", hour),
|
|
|
|
|
string.format("%02d", minutes))
|
2015-05-16 14:54:53 +02:00
|
|
|
|
end
|
2015-10-31 00:35:27 +01:00
|
|
|
|
local player_privs = core.get_player_privs(name)
|
2015-05-16 14:54:53 +02:00
|
|
|
|
if not player_privs.settime then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("You don't have permission to run "
|
|
|
|
|
.. "this command (missing privilege: @1).", "settime")
|
2015-05-16 14:54:53 +02:00
|
|
|
|
end
|
2022-05-22 16:28:24 +02:00
|
|
|
|
local relative, negative, hour, minute = param:match("^(~?)(%-?)(%d+):(%d+)$")
|
|
|
|
|
if not relative then -- checking the first capture against nil suffices
|
|
|
|
|
local new_time = core.parse_relative_number(param, core.get_timeofday() * 24000)
|
|
|
|
|
if not new_time then
|
|
|
|
|
new_time = tonumber(param) or -1
|
|
|
|
|
else
|
|
|
|
|
new_time = new_time % 24000
|
|
|
|
|
end
|
2022-01-27 22:23:14 +01:00
|
|
|
|
if new_time ~= new_time or new_time < 0 or new_time > 24000 then
|
|
|
|
|
return false, S("Invalid time (must be between 0 and 24000).")
|
2015-05-16 14:54:53 +02:00
|
|
|
|
end
|
2022-01-27 22:23:14 +01:00
|
|
|
|
core.set_timeofday(new_time / 24000)
|
2015-05-16 14:54:53 +02:00
|
|
|
|
core.log("action", name .. " sets time to " .. new_time)
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return true, S("Time of day changed.")
|
2015-05-16 14:54:53 +02:00
|
|
|
|
end
|
2022-05-22 16:28:24 +02:00
|
|
|
|
local new_time
|
2015-05-16 14:54:53 +02:00
|
|
|
|
hour = tonumber(hour)
|
|
|
|
|
minute = tonumber(minute)
|
2022-05-22 16:28:24 +02:00
|
|
|
|
if relative == "" then
|
|
|
|
|
if hour < 0 or hour > 23 then
|
|
|
|
|
return false, S("Invalid hour (must be between 0 and 23 inclusive).")
|
|
|
|
|
elseif minute < 0 or minute > 59 then
|
|
|
|
|
return false, S("Invalid minute (must be between 0 and 59 inclusive).")
|
|
|
|
|
end
|
|
|
|
|
new_time = (hour * 60 + minute) / 1440
|
|
|
|
|
else
|
|
|
|
|
if minute < 0 or minute > 59 then
|
|
|
|
|
return false, S("Invalid minute (must be between 0 and 59 inclusive).")
|
|
|
|
|
end
|
|
|
|
|
local current_time = core.get_timeofday()
|
|
|
|
|
if negative == "-" then -- negative time
|
|
|
|
|
hour, minute = -hour, -minute
|
|
|
|
|
end
|
|
|
|
|
new_time = (current_time + (hour * 60 + minute) / 1440) % 1
|
|
|
|
|
local _
|
|
|
|
|
_, hour, minute = get_time(new_time)
|
2015-05-16 14:54:53 +02:00
|
|
|
|
end
|
2022-05-22 16:28:24 +02:00
|
|
|
|
core.set_timeofday(new_time)
|
2015-06-02 06:45:21 +02:00
|
|
|
|
core.log("action", ("%s sets time to %d:%02d"):format(name, hour, minute))
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return true, S("Time of day changed.")
|
2012-07-22 15:42:43 +02:00
|
|
|
|
end,
|
|
|
|
|
})
|
|
|
|
|
|
2016-03-06 21:02:21 +01:00
|
|
|
|
core.register_chatcommand("days", {
|
2021-03-05 16:27:33 +01:00
|
|
|
|
description = S("Show day count since world creation"),
|
2016-03-06 21:02:21 +01:00
|
|
|
|
func = function(name, param)
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return true, S("Current day is @1.", core.get_day_count())
|
2016-03-06 21:02:21 +01:00
|
|
|
|
end
|
|
|
|
|
})
|
|
|
|
|
|
2021-03-06 04:05:14 +01:00
|
|
|
|
local function parse_shutdown_param(param)
|
|
|
|
|
local delay, reconnect, message
|
|
|
|
|
local one, two, three
|
|
|
|
|
one, two, three = param:match("^(%S+) +(%-r) +(.*)")
|
|
|
|
|
if one and two and three then
|
|
|
|
|
-- 3 arguments: delay, reconnect and message
|
|
|
|
|
return one, two, three
|
|
|
|
|
end
|
|
|
|
|
-- 2 arguments
|
|
|
|
|
one, two = param:match("^(%S+) +(.*)")
|
|
|
|
|
if one and two then
|
|
|
|
|
if tonumber(one) then
|
|
|
|
|
delay = one
|
|
|
|
|
if two == "-r" then
|
|
|
|
|
reconnect = two
|
|
|
|
|
else
|
|
|
|
|
message = two
|
|
|
|
|
end
|
|
|
|
|
elseif one == "-r" then
|
|
|
|
|
reconnect, message = one, two
|
|
|
|
|
end
|
|
|
|
|
return delay, reconnect, message
|
|
|
|
|
end
|
|
|
|
|
-- 1 argument
|
|
|
|
|
one = param:match("(.*)")
|
|
|
|
|
if tonumber(one) then
|
|
|
|
|
delay = one
|
|
|
|
|
elseif one == "-r" then
|
|
|
|
|
reconnect = one
|
|
|
|
|
else
|
|
|
|
|
message = one
|
|
|
|
|
end
|
|
|
|
|
return delay, reconnect, message
|
|
|
|
|
end
|
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.register_chatcommand("shutdown", {
|
2021-03-06 04:05:14 +01:00
|
|
|
|
params = S("[<delay_in_seconds> | -1] [-r] [<message>]"),
|
|
|
|
|
description = S("Shutdown server (-1 cancels a delayed shutdown, -r allows players to reconnect)"),
|
2012-07-22 15:42:43 +02:00
|
|
|
|
privs = {server=true},
|
|
|
|
|
func = function(name, param)
|
2021-03-06 04:05:14 +01:00
|
|
|
|
local delay, reconnect, message = parse_shutdown_param(param)
|
|
|
|
|
local bool_reconnect = reconnect == "-r"
|
|
|
|
|
if not message then
|
|
|
|
|
message = ""
|
2018-06-11 13:43:12 +02:00
|
|
|
|
end
|
|
|
|
|
delay = tonumber(delay) or 0
|
2017-04-15 23:19:18 +02:00
|
|
|
|
|
2018-06-11 13:43:12 +02:00
|
|
|
|
if delay == 0 then
|
2017-04-15 23:19:18 +02:00
|
|
|
|
core.log("action", name .. " shuts down server")
|
2021-03-05 16:27:33 +01:00
|
|
|
|
core.chat_send_all("*** "..S("Server shutting down (operator request)."))
|
2017-04-15 23:19:18 +02:00
|
|
|
|
end
|
2021-03-06 04:05:14 +01:00
|
|
|
|
core.request_shutdown(message:trim(), bool_reconnect, delay)
|
2020-03-14 15:01:22 +01:00
|
|
|
|
return true
|
2012-07-22 15:42:43 +02:00
|
|
|
|
end,
|
|
|
|
|
})
|
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.register_chatcommand("ban", {
|
2021-03-05 16:27:33 +01:00
|
|
|
|
params = S("[<name>]"),
|
|
|
|
|
description = S("Ban the IP of a player or show the ban list"),
|
2012-07-22 15:42:43 +02:00
|
|
|
|
privs = {ban=true},
|
|
|
|
|
func = function(name, param)
|
|
|
|
|
if param == "" then
|
2018-01-29 23:39:36 +01:00
|
|
|
|
local ban_list = core.get_ban_list()
|
|
|
|
|
if ban_list == "" then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return true, S("The ban list is empty.")
|
2018-01-29 23:39:36 +01:00
|
|
|
|
else
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return true, S("Ban list: @1", ban_list)
|
2018-01-29 23:39:36 +01:00
|
|
|
|
end
|
2012-07-22 15:42:43 +02:00
|
|
|
|
end
|
2022-05-26 21:36:58 +02:00
|
|
|
|
if core.is_singleplayer() then
|
|
|
|
|
return false, S("You cannot ban players in singleplayer!")
|
|
|
|
|
end
|
2014-04-28 03:02:48 +02:00
|
|
|
|
if not core.get_player_by_name(param) then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Player is not online.")
|
2012-07-22 15:42:43 +02:00
|
|
|
|
end
|
2014-04-28 03:02:48 +02:00
|
|
|
|
if not core.ban_player(param) then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Failed to ban player.")
|
2012-07-22 15:42:43 +02:00
|
|
|
|
end
|
2014-01-30 00:27:05 +01:00
|
|
|
|
local desc = core.get_ban_description(param)
|
|
|
|
|
core.log("action", name .. " bans " .. desc .. ".")
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return true, S("Banned @1.", desc)
|
2012-07-22 15:42:43 +02:00
|
|
|
|
end,
|
|
|
|
|
})
|
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.register_chatcommand("unban", {
|
2021-03-05 16:27:33 +01:00
|
|
|
|
params = S("<name> | <IP_address>"),
|
|
|
|
|
description = S("Remove IP ban belonging to a player/IP"),
|
2012-07-22 15:42:43 +02:00
|
|
|
|
privs = {ban=true},
|
|
|
|
|
func = function(name, param)
|
2014-04-28 03:02:48 +02:00
|
|
|
|
if not core.unban_player_or_ip(param) then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Failed to unban player/IP.")
|
2012-07-22 15:42:43 +02:00
|
|
|
|
end
|
2014-01-30 00:27:05 +01:00
|
|
|
|
core.log("action", name .. " unbans " .. param)
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return true, S("Unbanned @1.", param)
|
2012-07-22 15:42:43 +02:00
|
|
|
|
end,
|
|
|
|
|
})
|
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.register_chatcommand("kick", {
|
2021-03-05 16:27:33 +01:00
|
|
|
|
params = S("<name> [<reason>]"),
|
|
|
|
|
description = S("Kick a player"),
|
2014-01-26 18:40:25 +01:00
|
|
|
|
privs = {kick=true},
|
|
|
|
|
func = function(name, param)
|
2014-01-30 00:27:05 +01:00
|
|
|
|
local tokick, reason = param:match("([^ ]+) (.+)")
|
|
|
|
|
tokick = tokick or param
|
2014-04-28 03:02:48 +02:00
|
|
|
|
if not core.kick_player(tokick, reason) then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Failed to kick player @1.", tokick)
|
2014-01-26 18:40:25 +01:00
|
|
|
|
end
|
2015-04-05 04:18:47 +02:00
|
|
|
|
local log_reason = ""
|
|
|
|
|
if reason then
|
|
|
|
|
log_reason = " with reason \"" .. reason .. "\""
|
|
|
|
|
end
|
|
|
|
|
core.log("action", name .. " kicks " .. tokick .. log_reason)
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return true, S("Kicked @1.", tokick)
|
2014-01-26 18:40:25 +01:00
|
|
|
|
end,
|
|
|
|
|
})
|
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.register_chatcommand("clearobjects", {
|
2021-03-05 16:27:33 +01:00
|
|
|
|
params = S("[full | quick]"),
|
|
|
|
|
description = S("Clear all objects in world"),
|
2012-07-22 15:42:43 +02:00
|
|
|
|
privs = {server=true},
|
|
|
|
|
func = function(name, param)
|
2016-03-23 05:59:23 +01:00
|
|
|
|
local options = {}
|
2017-11-21 03:55:33 +01:00
|
|
|
|
if param == "" or param == "quick" then
|
2016-02-08 22:20:04 +01:00
|
|
|
|
options.mode = "quick"
|
2017-11-21 03:55:33 +01:00
|
|
|
|
elseif param == "full" then
|
|
|
|
|
options.mode = "full"
|
2016-02-08 22:20:04 +01:00
|
|
|
|
else
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Invalid usage, see /help clearobjects.")
|
2016-02-08 22:20:04 +01:00
|
|
|
|
end
|
|
|
|
|
|
2021-03-08 20:27:32 +01:00
|
|
|
|
core.log("action", name .. " clears objects ("
|
2016-02-09 08:56:40 +01:00
|
|
|
|
.. options.mode .. " mode).")
|
2021-03-08 20:27:32 +01:00
|
|
|
|
if options.mode == "full" then
|
|
|
|
|
core.chat_send_all(S("Clearing all objects. This may take a long time. "
|
|
|
|
|
.. "You may experience a timeout. (by @1)", name))
|
|
|
|
|
end
|
2016-02-08 22:20:04 +01:00
|
|
|
|
core.clear_objects(options)
|
2014-01-30 00:27:05 +01:00
|
|
|
|
core.log("action", "Object clearing done.")
|
2021-03-05 16:27:33 +01:00
|
|
|
|
core.chat_send_all("*** "..S("Cleared all objects."))
|
2020-03-14 15:01:22 +01:00
|
|
|
|
return true
|
2012-07-22 15:42:43 +02:00
|
|
|
|
end,
|
|
|
|
|
})
|
2013-03-28 02:37:09 +01:00
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
|
core.register_chatcommand("msg", {
|
2021-03-05 16:27:33 +01:00
|
|
|
|
params = S("<name> <message>"),
|
|
|
|
|
description = S("Send a direct message to a player"),
|
2013-03-28 02:37:09 +01:00
|
|
|
|
privs = {shout=true},
|
|
|
|
|
func = function(name, param)
|
2014-01-30 00:27:05 +01:00
|
|
|
|
local sendto, message = param:match("^(%S+)%s(.+)$")
|
|
|
|
|
if not sendto then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Invalid usage, see /help msg.")
|
2014-01-30 00:27:05 +01:00
|
|
|
|
end
|
|
|
|
|
if not core.get_player_by_name(sendto) then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("The player @1 is not online.", sendto)
|
2014-01-30 00:27:05 +01:00
|
|
|
|
end
|
2019-09-22 22:48:36 +02:00
|
|
|
|
core.log("action", "DM from " .. name .. " to " .. sendto
|
2014-01-30 00:27:05 +01:00
|
|
|
|
.. ": " .. message)
|
2021-03-05 16:27:33 +01:00
|
|
|
|
core.chat_send_player(sendto, S("DM from @1: @2", name, message))
|
|
|
|
|
return true, S("Message sent.")
|
2013-03-28 02:37:09 +01:00
|
|
|
|
end,
|
|
|
|
|
})
|
2014-01-30 00:27:05 +01:00
|
|
|
|
|
2014-10-09 00:11:44 +02:00
|
|
|
|
core.register_chatcommand("last-login", {
|
2021-03-05 16:27:33 +01:00
|
|
|
|
params = S("[<name>]"),
|
|
|
|
|
description = S("Get the last login time of a player or yourself"),
|
2014-10-09 00:11:44 +02:00
|
|
|
|
func = function(name, param)
|
|
|
|
|
if param == "" then
|
|
|
|
|
param = name
|
|
|
|
|
end
|
|
|
|
|
local pauth = core.get_auth_handler().get_auth(param)
|
2020-05-23 13:24:06 +02:00
|
|
|
|
if pauth and pauth.last_login and pauth.last_login ~= -1 then
|
2014-10-09 00:11:44 +02:00
|
|
|
|
-- Time in UTC, ISO 8601 format
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return true, S("@1's last login time was @2.",
|
|
|
|
|
param,
|
|
|
|
|
os.date("!%Y-%m-%dT%H:%M:%SZ", pauth.last_login))
|
2014-10-09 00:11:44 +02:00
|
|
|
|
end
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("@1's last login time is unknown.", param)
|
2014-10-09 00:11:44 +02:00
|
|
|
|
end,
|
2015-05-16 14:54:53 +02:00
|
|
|
|
})
|
2017-05-20 12:56:17 +02:00
|
|
|
|
|
|
|
|
|
core.register_chatcommand("clearinv", {
|
2021-03-05 16:27:33 +01:00
|
|
|
|
params = S("[<name>]"),
|
|
|
|
|
description = S("Clear the inventory of yourself or another player"),
|
2017-05-20 12:56:17 +02:00
|
|
|
|
func = function(name, param)
|
|
|
|
|
local player
|
|
|
|
|
if param and param ~= "" and param ~= name then
|
|
|
|
|
if not core.check_player_privs(name, {server=true}) then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("You don't have permission to "
|
|
|
|
|
.. "clear another player's inventory "
|
|
|
|
|
.. "(missing privilege: @1).", "server")
|
2017-05-20 12:56:17 +02:00
|
|
|
|
end
|
|
|
|
|
player = core.get_player_by_name(param)
|
2021-03-05 16:27:33 +01:00
|
|
|
|
core.chat_send_player(param, S("@1 cleared your inventory.", name))
|
2017-05-20 12:56:17 +02:00
|
|
|
|
else
|
|
|
|
|
player = core.get_player_by_name(name)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
if player then
|
|
|
|
|
player:get_inventory():set_list("main", {})
|
|
|
|
|
player:get_inventory():set_list("craft", {})
|
|
|
|
|
player:get_inventory():set_list("craftpreview", {})
|
|
|
|
|
core.log("action", name.." clears "..player:get_player_name().."'s inventory")
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return true, S("Cleared @1's inventory.", player:get_player_name())
|
2017-05-20 12:56:17 +02:00
|
|
|
|
else
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Player must be online to clear inventory!")
|
2017-05-20 12:56:17 +02:00
|
|
|
|
end
|
|
|
|
|
end,
|
|
|
|
|
})
|
2018-02-04 19:21:41 +01:00
|
|
|
|
|
|
|
|
|
local function handle_kill_command(killer, victim)
|
|
|
|
|
if core.settings:get_bool("enable_damage") == false then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Players can't be killed, damage has been disabled.")
|
2018-02-04 19:21:41 +01:00
|
|
|
|
end
|
|
|
|
|
local victimref = core.get_player_by_name(victim)
|
|
|
|
|
if victimref == nil then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("Player @1 is not online.", victim)
|
2018-02-04 19:21:41 +01:00
|
|
|
|
elseif victimref:get_hp() <= 0 then
|
|
|
|
|
if killer == victim then
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("You are already dead.")
|
2018-02-04 19:21:41 +01:00
|
|
|
|
else
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return false, S("@1 is already dead.", victim)
|
2018-02-04 19:21:41 +01:00
|
|
|
|
end
|
|
|
|
|
end
|
2022-04-01 01:01:44 +02:00
|
|
|
|
if killer ~= victim then
|
2018-02-04 19:21:41 +01:00
|
|
|
|
core.log("action", string.format("%s killed %s", killer, victim))
|
|
|
|
|
end
|
|
|
|
|
-- Kill victim
|
|
|
|
|
victimref:set_hp(0)
|
2021-03-05 16:27:33 +01:00
|
|
|
|
return true, S("@1 has been killed.", victim)
|
2018-02-04 19:21:41 +01:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
core.register_chatcommand("kill", {
|
2021-03-05 16:27:33 +01:00
|
|
|
|
params = S("[<name>]"),
|
|
|
|
|
description = S("Kill player or yourself"),
|
2018-02-04 19:21:41 +01:00
|
|
|
|
privs = {server=true},
|
|
|
|
|
func = function(name, param)
|
|
|
|
|
return handle_kill_command(name, param == "" and name or param)
|
|
|
|
|
end,
|
|
|
|
|
})
|