some about page, default settings, some textures etc. not yet compiled or tested

This commit is contained in:
2023-02-20 00:03:47 +01:00
parent eb8783c20c
commit 8dbdfeeac6
21 changed files with 77 additions and 45 deletions

View File

@@ -2,8 +2,10 @@
-- handled by the engine.
core.register_on_death(function()
local formspec = "size[11,5.5]bgcolor[#320000b4;true]" ..
"label[4.85,1.35;" .. fgettext("You died") ..
--local formspec = "size[11,5.5]bgcolor[#320000b4;true]" ..
-- change color to black
local formspec = "size[11,5.5]bgcolor[#000000b4;true]" ..
"label[4.85,1.35;" .. fgettext("You died :(") ..
"]button_exit[4,3;3,0.5;btn_respawn;".. fgettext("Respawn") .."]"
core.show_formspec("bultin:death", formspec)
end)