capturetheflag/mods/other/latest_updates/init.lua

24 lines
800 B
Lua
Raw Normal View History

2020-10-16 16:40:39 +00:00
local latest_updates = minetest.formspec_escape([[
2022-09-19 17:46:06 +00:00
*Changed rocketeer mechanics
2022-04-30 14:18:35 +00:00
*Made Machine Gun automatic again
*Added knockback
*Made suffocation inside blocks instant
*Added hudbars
*Reduced place limit to 4 nodes per second
*Added Capture Rate statistic and alternative option to access the pro chest
*Re-added rocketeer class
2020-10-16 16:40:39 +00:00
]])
if minetest.global_exists("sfinv") then
sfinv.register_page("latest_updates:latest_updates", {
title = "Updates",
get = function(self, player, context)
return sfinv.make_formspec(player, context,
"real_coordinates[true]" ..
2020-10-16 21:51:07 +00:00
"label[3,0.4;"..minetest.colorize("#00aa00", "The latest updates to CTF are listed here").."]" ..
"box[0.1,0.65;10.4,10.1;#222222]" ..
"textarea[0.1,0.65;10.4,10.1;;;" .. latest_updates .. "]", false)
2020-10-16 16:40:39 +00:00
end
})
end