12345678910111213141516 |
- -- sfinv/init.lua
- dofile(minetest.get_modpath("sfinv") .. "/api.lua")
- -- Load support for MT game translation.
- local S = minetest.get_translator("sfinv")
- sfinv.register_page("sfinv:main", {
- title = S("Main"),
- get = function(self, player, context)
- return sfinv.make_formspec(player, context, [[
- textarea[1.5,.5;7,5;;Description of map;I have no idea what this will look like. LOL so I just need to make this super long and put in a whole bunch of nonesense text to see how it wraps and stuff. I suppose at some point this could be possibly used to display information about the current game, XP levels, remaining players, etc.]
- ]], true)
- end
- })
|