1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
minetest.register_node("trash_can:trash_can_wooden",{
groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3},
tiles = {"default_wood.png"},
description = "Wooden Trash Can",
drawtype="nodebox",
paramtype = "light",
node_box = {
type = "fixed",
fixed = {
{-0.375000,-0.500000,0.312500,0.375000,0.500000,0.375000},
{0.312500,-0.500000,-0.375000,0.375000,0.500000,0.375000},
{-0.375000,-0.500000,-0.375000,0.375000,0.500000,-0.312500},
{-0.375000,-0.500000,-0.375000,-0.312500,0.500000,0.375000},
{-0.312500,-0.500000,-0.312500,0.312500,-0.437500,0.312500},
}
},
on_construct = function(pos)
local meta = minetest.env:get_meta(pos)
meta:set_string("formspec",
"size[8,9]"..
"button[0,0;2,1;empty;Empty Trash]"..
"list[current_name;main;3,1;2,3;]"..
"list[current_player;main;0,5;8,4;]")
meta:set_string("infotext", "Trash Can")
local inv = meta:get_inventory()
inv:set_size("main", 8*4)
end,
can_dig = function(pos,player)
local meta = minetest.env:get_meta(pos);
local inv = meta:get_inventory()
return inv:is_empty("main")
end,
on_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player)
minetest.log("action", player:get_player_name()..
" moves stuff in trash can at "..minetest.pos_to_string(pos))
end,
on_metadata_inventory_put = function(pos, listname, index, stack, player)
minetest.log("action", player:get_player_name()..
" moves stuff to trash can at "..minetest.pos_to_string(pos))
end,
on_metadata_inventory_take = function(pos, listname, index, stack, player)
minetest.log("action", player:get_player_name()..
" takes stuff from trash can at "..minetest.pos_to_string(pos))
end,
on_receive_fields = function(pos, formname, fields, sender)
if fields.empty then
local meta = minetest.get_meta(pos)
local inv = meta:get_inventory()
for i = 1, inv:get_size("main") do
inv:set_stack("main", i, nil)
end
minetest.sound_play("trash", {to_player=player_name, gain = 1.0})
end
end,
})
minetest.register_craft({
output = 'trash_can:trash_can_wooden',
recipe = {
{'group:wood', '', 'group:wood'},
{'group:wood', '', 'group:wood'},
{'group:wood', 'group:wood', 'group:wood'},
}
})
--Unused stuff
minetest.register_node("trash_can:trash_can_full",{
groups = {choppy=2},
tiles = {"default_wood.png"},
drawtype="nodebox",
paramtype = "light",
node_box = {
type = "fixed",
fixed = {
{-0.375000,-0.500000,0.312500,0.375000,0.500000,0.375000}, --NodeBox 1
{0.312500,-0.500000,-0.375000,0.375000,0.500000,0.375000}, --NodeBox 2
{-0.375000,-0.500000,-0.375000,0.375000,0.500000,-0.312500}, --NodeBox 3
{-0.375000,-0.500000,-0.375000,-0.312500,0.500000,0.375000}, --NodeBox 4
{-0.312500,-0.500000,-0.312500,0.312500,0.375000,0.312500}, --NodeBox 5
}
}
})
|