assets_warehouse/menus.lua

14 lines
577 B
Lua

minetest.register_on_newplayer(function(player)
local name = player:get_player_name()
minetest.show_formspec(name,"Presentation",
"size[10,10]"..
"textarea[0.5,1;9.5,4;;;You are using the version 0.6 of assets_warehouse "..
"For hide this mesage just open the settings file in the folder of this mod"..
"and change the 'show_menu' option to 0 "..
"The new aobjects are care_bears_tree,fence,peppert and carrot mirror"..
"and wardrobefrom the comic of David Revoy,washing turret from Valve"..
"]")
end)