Add latest_updates mod

This commit is contained in:
LoneWolfHT 2020-10-16 09:40:39 -07:00
parent 0359e9cbca
commit 3645fa3bbc
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
local latest_updates = minetest.formspec_escape([[
- Prevented knights from using the SMG
- Gave medic class building tools and prevented them from using SMG/Shotgun
- Changed fall damage to use the combat system
- Increased damage dealt by knights (+1 hp) when wielding swords
- Merged the sniper class with the shooter class
- Changed bandages to give two points per heal
- Made rifle automatic and doubled damage
- Added combat mode
- Added Sticky grenades
- Added automatic skip votes
]])
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]" ..
"box[0.1,0.5;10.4,10.25;#222222]" ..
"textarea[0.1,0.5;10.4,10.25;;The latest updates to CTF are listed here;" .. latest_updates .. "]", false)
end
})
end

View file

@ -0,0 +1,2 @@
name = latest_updates
depends = sfinv