@@ -203,18 +203,18 @@ from the available ones of the following files:
203
203
Examples of sound parameter tables:
204
204
-- Play locationless on all clients
205
205
{
206
- gain = 1.0, -- default
206
+ gain = 1.0, -- default
207
207
}
208
208
-- Play locationless to a player
209
209
{
210
- to_player = name,
211
- gain = 1.0, -- default
210
+ to_player = name,
211
+ gain = 1.0, -- default
212
212
}
213
213
-- Play in a location
214
214
{
215
- pos = {x=1,y=2,z=3},
216
- gain = 1.0, -- default
217
- max_hear_distance = 32, -- default
215
+ pos = {x=1,y=2,z=3},
216
+ gain = 1.0, -- default
217
+ max_hear_distance = 32, -- default
218
218
}
219
219
-- Play connected to an object, looped
220
220
{
@@ -266,11 +266,11 @@ local drawtype = get_nodedef_field(nodename, "drawtype")
266
266
Example: minetest.get_item_group(name, group) has been implemented as:
267
267
268
268
function minetest.get_item_group(name, group)
269
- if not minetest.registered_items[name] or not
270
- minetest.registered_items[name].groups[group] then
271
- return 0
272
- end
273
- return minetest.registered_items[name].groups[group]
269
+ if not minetest.registered_items[name] or not
270
+ minetest.registered_items[name].groups[group] then
271
+ return 0
272
+ end
273
+ return minetest.registered_items[name].groups[group]
274
274
end
275
275
276
276
Nodes
@@ -491,7 +491,7 @@ An example: Make meat soup from any meat, any water and any bowl
491
491
}
492
492
An another example: Make red wool from white wool and red dye
493
493
{
494
- type = 'shapeless',
494
+ type = 'shapeless',
495
495
output = 'wool:red',
496
496
recipe = {'wool:white', 'group:dye,basecolor_red'},
497
497
}
@@ -502,7 +502,7 @@ Special groups
502
502
- level: Can be used to give an additional sense of progression in the game.
503
503
- A larger level will cause eg. a weapon of a lower level make much less
504
504
damage, and get weared out much faster, or not be able to get drops
505
- from destroyed nodes.
505
+ from destroyed nodes.
506
506
- 0 is something that is directly accessible at the start of gameplay
507
507
- There is no upper limit
508
508
- dig_immediate: (player can always pick up node without tool wear)
@@ -609,11 +609,11 @@ maximum level.
609
609
Example definition of the capabilities of a tool
610
610
-------------------------------------------------
611
611
tool_capabilities = {
612
- full_punch_interval=1.5,
613
- max_drop_level=1,
614
- groupcaps={
615
- crumbly={maxlevel=2, uses=20, times={[1]=1.60, [2]=1.20, [3]=0.80}}
616
- }
612
+ full_punch_interval=1.5,
613
+ max_drop_level=1,
614
+ groupcaps={
615
+ crumbly={maxlevel=2, uses=20, times={[1]=1.60, [2]=1.20, [3]=0.80}}
616
+ }
617
617
}
618
618
619
619
This makes the tool be able to dig nodes that fullfill both of these:
@@ -773,7 +773,7 @@ field[<X>,<Y>;<W>,<H>;<name>;<label>;<default>]
773
773
^ default is the default value of the field
774
774
^ default may contain variable references such as '${text}' which
775
775
will fill the value from the metadata value 'text'
776
- ^ Note: no extra text or more than a single variable is supported ATM.
776
+ ^ Note: no extra text or more than a single variable is supported ATM.
777
777
778
778
field[<name>;<label>;<default>]
779
779
^ as above but without position/size units
@@ -1050,20 +1050,20 @@ minetest.unban_player_or_ip(name) -> unban player or IP address
1050
1050
1051
1051
Particles:
1052
1052
minetest.add_particle(pos, velocity, acceleration, expirationtime,
1053
- size, collisiondetection, texture, playername)
1053
+ size, collisiondetection, texture, playername)
1054
1054
^ Spawn particle at pos with velocity and acceleration
1055
1055
^ Disappears after expirationtime seconds
1056
1056
^ collisiondetection: if true collides with physical objects
1057
1057
^ Uses texture (string)
1058
1058
^ Playername is optional, if specified spawns particle only on the player's client
1059
1059
1060
1060
minetest.add_particlespawner(amount, time,
1061
- minpos, maxpos,
1062
- minvel, maxvel,
1063
- minacc, maxacc,
1064
- minexptime, maxexptime,
1065
- minsize, maxsize,
1066
- collisiondetection, texture, playername)
1061
+ minpos, maxpos,
1062
+ minvel, maxvel,
1063
+ minacc, maxacc,
1064
+ minexptime, maxexptime,
1065
+ minsize, maxsize,
1066
+ collisiondetection, texture, playername)
1067
1067
^ Add a particlespawner, an object that spawns an amount of particles over time seconds
1068
1068
^ The particle's properties are random values in between the boundings:
1069
1069
^ minpos/maxpos, minvel/maxvel (velocity), minacc/maxacc (acceleration),
@@ -1323,10 +1323,10 @@ Player-only: (no-op for other objects)
1323
1323
^ Should usually be called in on_joinplayer
1324
1324
- get_inventory_formspec() -> formspec string
1325
1325
- get_player_control(): returns table with player pressed keys
1326
- {jump=bool,right=bool,left=bool,LMB=bool,RMB=bool,sneak=bool,aux1=bool,down=bool,up=bool}
1326
+ {jump=bool,right=bool,left=bool,LMB=bool,RMB=bool,sneak=bool,aux1=bool,down=bool,up=bool}
1327
1327
- get_player_control_bits(): returns integer with bit packed player pressed keys
1328
- bit nr/meaning: 0/up ,1/down ,2/left ,3/right ,4/jump ,5/aux1 ,6/sneak ,7/LMB ,8/RMB
1329
-
1328
+ bit nr/meaning: 0/up ,1/down ,2/left ,3/right ,4/jump ,5/aux1 ,6/sneak ,7/LMB ,8/RMB
1329
+
1330
1330
InvRef: Reference to an inventory
1331
1331
methods:
1332
1332
- is_empty(listname): return true if list is empty
@@ -1411,8 +1411,8 @@ Registered entities
1411
1411
^ puncher: ObjectRef (can be nil)
1412
1412
^ time_from_last_punch: Meant for disallowing spamming of clicks (can be nil)
1413
1413
^ tool_capabilities: capability table of used tool (can be nil)
1414
- ^ dir: unit vector of direction of punch. Always defined. Points from
1415
- the puncher to the punched.
1414
+ ^ dir: unit vector of direction of punch. Always defined. Points from
1415
+ the puncher to the punched.
1416
1416
- on_rightclick(self, clicker)
1417
1417
- get_staticdata(self)
1418
1418
^ Should return a string that will be passed to on_activate when
@@ -1533,10 +1533,10 @@ Node definition (register_node)
1533
1533
drawtype = "normal", -- See "Node drawtypes"
1534
1534
visual_scale = 1.0,
1535
1535
tiles = {tile definition 1, def2, def3, def4, def5, def6},
1536
- ^ Textures of node; +Y, -Y, +X, -X, +Z, -Z (old field name: tile_images)
1536
+ ^ Textures of node; +Y, -Y, +X, -X, +Z, -Z (old field name: tile_images)
1537
1537
^ List can be shortened to needed length
1538
1538
special_tiles = {tile definition 1, Tile definition 2},
1539
- ^ Special textures of node; used rarely (old field name: special_materials)
1539
+ ^ Special textures of node; used rarely (old field name: special_materials)
1540
1540
^ List can be shortened to needed length
1541
1541
alpha = 255,
1542
1542
post_effect_color = {a=0, r=0, g=0, b=0}, -- If player is inside node
@@ -1592,7 +1592,7 @@ Node definition (register_node)
1592
1592
can_dig = function(pos,player)
1593
1593
^ returns true if node can be dug, or false if not
1594
1594
^ default: nil
1595
-
1595
+
1596
1596
on_punch = func(pos, node, puncher),
1597
1597
^ default: minetest.node_punch
1598
1598
^ By default: does nothing
@@ -1615,32 +1615,32 @@ Node definition (register_node)
1615
1615
^ Called when an UI form (eg. sign text input) returns data
1616
1616
^ default: nil
1617
1617
1618
- allow_metadata_inventory_move = func(pos, from_list, from_index,
1619
- to_list, to_index, count, player),
1620
- ^ Called when a player wants to move items inside the inventory
1621
- ^ Return value: number of items allowed to move
1622
-
1623
- allow_metadata_inventory_put = func(pos, listname, index, stack, player),
1624
- ^ Called when a player wants to put something into the inventory
1625
- ^ Return value: number of items allowed to put
1626
- ^ Return value: -1: Allow and don't modify item count in inventory
1618
+ allow_metadata_inventory_move = func(pos, from_list, from_index,
1619
+ to_list, to_index, count, player),
1620
+ ^ Called when a player wants to move items inside the inventory
1621
+ ^ Return value: number of items allowed to move
1622
+
1623
+ allow_metadata_inventory_put = func(pos, listname, index, stack, player),
1624
+ ^ Called when a player wants to put something into the inventory
1625
+ ^ Return value: number of items allowed to put
1626
+ ^ Return value: -1: Allow and don't modify item count in inventory
1627
1627
1628
- allow_metadata_inventory_take = func(pos, listname, index, stack, player),
1629
- ^ Called when a player wants to take something out of the inventory
1630
- ^ Return value: number of items allowed to take
1631
- ^ Return value: -1: Allow and don't modify item count in inventory
1632
-
1633
- on_metadata_inventory_move = func(pos, from_list, from_index,
1634
- to_list, to_index, count, player),
1635
- on_metadata_inventory_put = func(pos, listname, index, stack, player),
1636
- on_metadata_inventory_take = func(pos, listname, index, stack, player),
1637
- ^ Called after the actual action has happened, according to what was allowed.
1638
- ^ No return value
1628
+ allow_metadata_inventory_take = func(pos, listname, index, stack, player),
1629
+ ^ Called when a player wants to take something out of the inventory
1630
+ ^ Return value: number of items allowed to take
1631
+ ^ Return value: -1: Allow and don't modify item count in inventory
1632
+
1633
+ on_metadata_inventory_move = func(pos, from_list, from_index,
1634
+ to_list, to_index, count, player),
1635
+ on_metadata_inventory_put = func(pos, listname, index, stack, player),
1636
+ on_metadata_inventory_take = func(pos, listname, index, stack, player),
1637
+ ^ Called after the actual action has happened, according to what was allowed.
1638
+ ^ No return value
1639
1639
1640
- on_blast = func(pos, intensity),
1641
- ^ intensity: 1.0 = mid range of regular TNT
1642
- ^ If defined, called when an explosion touches the node, instead of
1643
- removing the node
1640
+ on_blast = func(pos, intensity),
1641
+ ^ intensity: 1.0 = mid range of regular TNT
1642
+ ^ If defined, called when an explosion touches the node, instead of
1643
+ removing the node
1644
1644
}
1645
1645
1646
1646
Recipe for register_craft: (shaped)
@@ -1695,19 +1695,19 @@ Ore definition (register_ore)
1695
1695
ore = "default:stone_with_coal",
1696
1696
wherein = "default:stone",
1697
1697
clust_scarcity = 8*8*8,
1698
- ^ Ore has a 1 out of clust_scarcity chance of spawning in a node
1698
+ ^ Ore has a 1 out of clust_scarcity chance of spawning in a node
1699
1699
^ This value should be *MUCH* higher than your intuition might tell you!
1700
1700
clust_num_ores = 8,
1701
- ^ Number of ores in a cluster
1701
+ ^ Number of ores in a cluster
1702
1702
clust_size = 3,
1703
- ^ Size of the bounding box of the cluster
1703
+ ^ Size of the bounding box of the cluster
1704
1704
^ In this example, there is a 3x3x3 cluster where 8 out of the 27 nodes are coal ore
1705
1705
height_min = -31000,
1706
1706
height_max = 64,
1707
1707
noise_threshhold = 0.5,
1708
- ^ If noise is above this threshhold, ore is placed. Not needed for a uniform distribution
1708
+ ^ If noise is above this threshhold, ore is placed. Not needed for a uniform distribution
1709
1709
noise_params = {offset=0, scale=1, spread={x=100, y=100, z=100}, seed=23, octaves=3, persist=0.70}
1710
- ^ NoiseParams structure describing the perlin noise used for ore distribution.
1710
+ ^ NoiseParams structure describing the perlin noise used for ore distribution.
1711
1711
^ Needed for sheet ore_type. Omit from scatter ore_type for a uniform ore distribution
1712
1712
}
1713
1713
@@ -1721,24 +1721,24 @@ Chatcommand definition (register_chatcommand)
1721
1721
1722
1722
Detached inventory callbacks
1723
1723
{
1724
- allow_move = func(inv, from_list, from_index, to_list, to_index, count, player),
1724
+ allow_move = func(inv, from_list, from_index, to_list, to_index, count, player),
1725
1725
^ Called when a player wants to move items inside the inventory
1726
- ^ Return value: number of items allowed to move
1727
-
1726
+ ^ Return value: number of items allowed to move
1727
+
1728
1728
allow_put = func(inv, listname, index, stack, player),
1729
1729
^ Called when a player wants to put something into the inventory
1730
- ^ Return value: number of items allowed to put
1731
- ^ Return value: -1: Allow and don't modify item count in inventory
1730
+ ^ Return value: number of items allowed to put
1731
+ ^ Return value: -1: Allow and don't modify item count in inventory
1732
1732
1733
1733
allow_take = func(inv, listname, index, stack, player),
1734
1734
^ Called when a player wants to take something out of the inventory
1735
- ^ Return value: number of items allowed to take
1736
- ^ Return value: -1: Allow and don't modify item count in inventory
1737
-
1738
- on_move = func(inv, from_list, from_index, to_list, to_index, count, player),
1735
+ ^ Return value: number of items allowed to take
1736
+ ^ Return value: -1: Allow and don't modify item count in inventory
1737
+
1738
+ on_move = func(inv, from_list, from_index, to_list, to_index, count, player),
1739
1739
on_put = func(inv, listname, index, stack, player),
1740
1740
on_take = func(inv, listname, index, stack, player),
1741
- ^ Called after the actual action has happened, according to what was allowed.
1742
- ^ No return value
1741
+ ^ Called after the actual action has happened, according to what was allowed.
1742
+ ^ No return value
1743
1743
}
1744
1744
0 commit comments