2018-04-01 11:58:17 +00:00
|
|
|
local bountied_player = nil
|
2018-04-06 10:21:44 +00:00
|
|
|
local bounty_score = 0
|
2018-04-01 11:58:17 +00:00
|
|
|
|
|
|
|
local function announce(name)
|
2019-04-09 08:31:18 +00:00
|
|
|
local tcolor = ctf_colors.get_color(ctf.player(bountied_player))
|
2018-04-01 11:58:17 +00:00
|
|
|
minetest.chat_send_player(name,
|
2018-06-20 10:17:26 +00:00
|
|
|
minetest.colorize("#fff326", "The next person to kill ") ..
|
2019-04-09 08:31:18 +00:00
|
|
|
minetest.colorize(tcolor.css, bountied_player) ..
|
2018-06-20 10:17:26 +00:00
|
|
|
minetest.colorize("#fff326", " will receive " .. bounty_score .. " points!"))
|
2018-04-01 11:58:17 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
local function announce_all()
|
|
|
|
if bountied_player then
|
|
|
|
for _, player in pairs(minetest.get_connected_players()) do
|
|
|
|
if bountied_player ~= player:get_player_name() then
|
|
|
|
announce(player:get_player_name())
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local function bounty_player(target)
|
2018-12-30 23:27:16 +00:00
|
|
|
local prev = bountied_player
|
2018-04-01 11:58:17 +00:00
|
|
|
bountied_player = target
|
|
|
|
|
2018-04-08 14:48:33 +00:00
|
|
|
-- Score * K/D
|
2018-04-06 13:04:56 +00:00
|
|
|
-- bounty_score = -----------, or 500 (whichever is lesser)
|
2018-04-08 14:48:33 +00:00
|
|
|
-- 5000
|
2018-04-06 13:04:56 +00:00
|
|
|
|
|
|
|
local pstat, _ = ctf_stats.player(target)
|
2018-04-08 14:48:33 +00:00
|
|
|
if pstat.deaths == 0 then
|
|
|
|
pstat.deaths = 1
|
|
|
|
end
|
2018-04-06 13:04:56 +00:00
|
|
|
bounty_score = (pstat.score * (pstat.kills / pstat.deaths)) / 10000
|
|
|
|
if bounty_score > 500 then
|
|
|
|
bounty_score = 500
|
|
|
|
end
|
2018-04-08 14:48:33 +00:00
|
|
|
if bounty_score < 50 then
|
|
|
|
bounty_score = 50
|
|
|
|
end
|
|
|
|
bounty_score = math.floor(bounty_score)
|
2018-04-06 13:04:56 +00:00
|
|
|
|
2018-12-30 23:27:16 +00:00
|
|
|
if prev then
|
|
|
|
for _, player in pairs(minetest.get_connected_players()) do
|
|
|
|
local name = player:get_player_name()
|
|
|
|
if bountied_player ~= name then
|
2019-07-05 16:18:59 +00:00
|
|
|
local prev_color = ctf_colors.get_color(prev, ctf.player(prev)).css
|
2018-12-30 23:27:16 +00:00
|
|
|
minetest.chat_send_player(player:get_player_name(),
|
|
|
|
minetest.colorize("#fff326", "Player ") ..
|
2019-07-05 16:18:59 +00:00
|
|
|
minetest.colorize(prev_color, prev) ..
|
2018-12-30 23:27:16 +00:00
|
|
|
minetest.colorize("#fff326", " no longer has a bounty on their head!"))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-04-01 11:58:17 +00:00
|
|
|
minetest.after(0.1, announce_all)
|
|
|
|
end
|
|
|
|
|
|
|
|
local function bounty_find_new_target()
|
|
|
|
local players = {}
|
|
|
|
for _, player in pairs(minetest.get_connected_players()) do
|
|
|
|
local name = player:get_player_name()
|
2018-04-06 13:04:56 +00:00
|
|
|
local pstat, _ = ctf_stats.player(name)
|
2018-04-01 11:58:17 +00:00
|
|
|
pstat.name = name
|
|
|
|
pstat.color = nil
|
|
|
|
if pstat.score > 1000 and pstat.kills > pstat.deaths * 1.5 then
|
|
|
|
table.insert(players, pstat)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if #players > 0 then
|
|
|
|
bounty_player(players[math.random(1, #players)].name)
|
|
|
|
end
|
|
|
|
|
|
|
|
minetest.after(math.random(500, 1000), bounty_find_new_target)
|
|
|
|
end
|
|
|
|
minetest.after(math.random(500, 1000), bounty_find_new_target)
|
|
|
|
|
|
|
|
minetest.register_on_joinplayer(function(player)
|
2018-12-30 23:27:16 +00:00
|
|
|
local name = player:get_player_name()
|
|
|
|
if bountied_player and
|
|
|
|
bountied_player ~= name then
|
|
|
|
announce(name)
|
2018-04-01 11:58:17 +00:00
|
|
|
end
|
|
|
|
end)
|
|
|
|
|
|
|
|
ctf.register_on_killedplayer(function(victim, killer)
|
2019-03-17 01:35:51 +00:00
|
|
|
if victim ~= bountied_player or victim == killer then
|
2018-07-12 17:41:56 +00:00
|
|
|
return
|
|
|
|
end
|
2018-04-18 22:00:15 +00:00
|
|
|
|
2019-03-17 01:35:51 +00:00
|
|
|
local main, match = ctf_stats.player(killer)
|
|
|
|
if main and match then
|
|
|
|
main.score = main.score + bounty_score
|
|
|
|
match.score = match.score + bounty_score
|
|
|
|
main.bounty_kills = main.bounty_kills + 1
|
|
|
|
match.bounty_kills = match.bounty_kills + 1
|
2018-04-01 11:58:17 +00:00
|
|
|
end
|
2019-03-17 01:35:51 +00:00
|
|
|
bountied_player = nil
|
|
|
|
|
|
|
|
local msg = killer .. " has killed " .. victim .. " and received the prize!"
|
2019-10-18 05:52:18 +00:00
|
|
|
minetest.log("action", msg)
|
2019-03-17 01:35:51 +00:00
|
|
|
minetest.chat_send_all(msg)
|
|
|
|
hud_score.new(killer, {
|
|
|
|
name = "ctf_bounty:prize",
|
|
|
|
color = 0x4444FF,
|
|
|
|
value = bounty_score
|
|
|
|
})
|
2018-04-01 11:58:17 +00:00
|
|
|
end)
|
|
|
|
|
|
|
|
minetest.register_privilege("bounty_admin")
|
|
|
|
|
|
|
|
minetest.register_chatcommand("place_bounty", {
|
|
|
|
privs = { bounty_admin = true },
|
|
|
|
func = function(name, target)
|
|
|
|
target = target:trim()
|
|
|
|
if not minetest.get_player_by_name(target) then
|
|
|
|
return false, target .. " is not online"
|
|
|
|
end
|
|
|
|
|
|
|
|
bounty_player(target)
|
2019-10-18 05:52:18 +00:00
|
|
|
minetest.log("action", name .. " places bounty on " .. target)
|
2018-04-01 11:58:17 +00:00
|
|
|
return true, "Put bounty on " .. target
|
|
|
|
end
|
|
|
|
})
|