Block Attributes
pick
This attribute defines the item that a player will receive when he picks (middle click) the block in creative mode.
Examples
// Default value (ID is the block's id)
pick[0] = "ID:0 1";
// ..
pick[15] = "ID:15 1";
// A block of oak wooden planks
pick[0] = "5";
// A block of spruce wooden planks
pick[2] = "5:1";
// A block whose id is in the config file
pick[8] = config.getBlockId("myBlockId");
// A block with metadata 5 whose id is in the config file
pick[15] = config.getBlockId("myBlockId") + ":5";
pick[0] = "ID:0 1";
// ..
pick[15] = "ID:15 1";
// A block of oak wooden planks
pick[0] = "5";
// A block of spruce wooden planks
pick[2] = "5:1";
// A block whose id is in the config file
pick[8] = config.getBlockId("myBlockId");
// A block with metadata 5 whose id is in the config file
pick[15] = config.getBlockId("myBlockId") + ":5";