mirror of
https://github.com/minetest-mods/i3.git
synced 2025-06-28 06:40:17 +02:00
Totally rework how bags work + other cool stuff
This commit is contained in:
@ -1,25 +1,22 @@
|
||||
i3.new_tab {
|
||||
name = "test1",
|
||||
i3.new_tab("test1", {
|
||||
description = "Test 1 Test 1",
|
||||
image = "i3_heart.png",
|
||||
|
||||
formspec = function(player, data, fs)
|
||||
fs("label[3,1;Test 1]")
|
||||
end,
|
||||
}
|
||||
})
|
||||
|
||||
i3.new_tab {
|
||||
name = "test2",
|
||||
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 {
|
||||
name = "test3",
|
||||
i3.new_tab("test3", {
|
||||
description = "Test 3",
|
||||
|
||||
access = function(player, data)
|
||||
@ -36,10 +33,9 @@ i3.new_tab {
|
||||
fields = function(player, data, fields)
|
||||
i3.set_fs(player, "label[3,2;Test extra_fs]")
|
||||
end,
|
||||
}
|
||||
})
|
||||
|
||||
i3.override_tab("test2", {
|
||||
name = "test2",
|
||||
description = "Test override",
|
||||
image = "i3_mesepick.png",
|
||||
|
||||
|
Reference in New Issue
Block a user