2017-01-21 15:02:08 +01:00
|
|
|
-- Minetest: builtin/client/init.lua
|
2017-06-30 20:14:39 +02:00
|
|
|
local scriptpath = core.get_builtin_path()
|
2017-01-21 15:02:08 +01:00
|
|
|
local clientpath = scriptpath.."client"..DIR_DELIM
|
2017-01-22 09:05:09 +01:00
|
|
|
local commonpath = scriptpath.."common"..DIR_DELIM
|
2017-01-21 15:02:08 +01:00
|
|
|
|
|
|
|
dofile(clientpath .. "register.lua")
|
2017-01-22 11:17:41 +01:00
|
|
|
dofile(commonpath .. "after.lua")
|
|
|
|
dofile(commonpath .. "chatcommands.lua")
|
2017-01-24 17:26:15 +01:00
|
|
|
dofile(clientpath .. "chatcommands.lua")
|
2017-04-06 07:57:49 +02:00
|
|
|
dofile(commonpath .. "vector.lua")
|
2017-01-21 15:02:08 +01:00
|
|
|
|
2017-01-22 00:20:55 +01:00
|
|
|
core.register_on_death(function()
|
|
|
|
core.display_chat_message("You died.")
|
2017-01-24 17:26:15 +01:00
|
|
|
local formspec = "size[11,5.5]bgcolor[#320000b4;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)
|
|
|
|
|
|
|
|
core.register_on_formspec_input(function(formname, fields)
|
|
|
|
if formname == "bultin:death" then
|
|
|
|
core.send_respawn()
|
|
|
|
end
|
2017-01-21 15:02:08 +01:00
|
|
|
end)
|