mirror of
https://github.com/minetest-mods/i3.git
synced 2024-11-14 23:00:22 +01:00
35 lines
634 B
Lua
35 lines
634 B
Lua
i3.new_tab("test1", {
|
|
description = "Test 1 Test 1",
|
|
image = "i3_heart.png",
|
|
|
|
formspec = function(player, data, fs)
|
|
fs("label", 3, 1, "Just a test")
|
|
fs"label[3,2;Lorem Ipsum]"
|
|
end,
|
|
})
|
|
|
|
i3.new_tab("test2", {
|
|
description = "Test 2",
|
|
image = "i3_mesepick.png",
|
|
|
|
formspec = function(player, data, fs)
|
|
fs("label[3,1;Test 2]")
|
|
end,
|
|
})
|
|
|
|
i3.new_tab("test_creative", {
|
|
description = "Test creative",
|
|
|
|
access = function(player, data)
|
|
local name = player:get_player_name()
|
|
return core.is_creative_enabled(name)
|
|
end,
|
|
|
|
formspec = function(player, data, fs)
|
|
fs("label[3,1;Creative enabled]")
|
|
end,
|
|
|
|
fields = i3.set_fs,
|
|
})
|
|
|