View difference between Paste ID: pv81K29G and 57xrQirP
SHOW: | | - or go back to the newest paste.
1
Banner Data
2
= GIVE ==========================================================
3
/give @p minecraft:banner <quantity> <base color:0-15>
4
5
(Two Blue Banners)
6
/give @p minecraft:banner 2 4      
7
8
= SETBLOCK ======================================================
9
/setblock ~ ~ ~ minecraft:standing_banner <rotation:0-15> <base color:0-15>
10
11
(Red banner facing the west)
12
/setblock ~ ~ ~ minecraft:standing_banner 4 1
13
14
= BLOCKDATA =====================================================
15
/blockdata ~ ~ ~ {Base:<COLOR>,Patterns:[ ]}
16
=================================================================
17
18
NBT tags
19
20
FOR THE /give COMMAND:
21
{BlockEntityTag:
22
	{
23
	Patterns:[
24
		Base:1,
25
			{
26
			Pattern:" ",Color:#
27
			},
28
			{
29
			Pattern:" ",Color:#
30
			}
31
		]
32
	}
33
}
34
35
FOR THE /setblock AND /blockdata COMMANDS:
36
{Patterns:[
37
	0:
38
	{Pattern:" ",Color:#},
39
	1:
40
	{Pattern:" ",Color:#},
41
	2:
42
	{Pattern:" ",Color:#}
43
	]
44
}
45
46
Patterns:
47
"mc" - Middle Circle
48
"mr" - Middle Rhombus
49
"ss" - Small Stripes
50
"gra"- Gradient
51
52
"tl" - Top-Left Box
53
"tr" - Top-Right Box
54
"bl" - Bottom-Left Box
55
"br" - Bottom-Right Box
56
57
"ls" - Line on the left side
58
"rs" - Line on the right side
59
"ts" - Line on the top
60
"bs" - Line on the bottom
61
62
"hh" - Horizontal Half 
63
64
"dls"- Diagonal Line (going from top-right to bottom-left)
65
"drs"- Diagonal Line (going from top-left to bottom-right)
66
"cr" - Cross
67
68
"ms" - Horizontal line going through the middle
69
"cs" - Vertical line going through the middle
70
71
"tt" - Triangle on the top
72
"bt" - Triangle on the bottom
73
74
"ld" - Triangle on top left
75
"rd" - Triangle on top right
76
77
"tts"- Top Saw
78
"bts"- Bottom Saw
79
80
"flo"- Flower pattern
81
"bri"- Brick pattern
82
"sku"- Skull pattern
83
"cre"- Creeper pattern
84
85
# - Colors:
86
1 - Black
87
2 - Red
88
3 - Green
89
4 - Blue
90
5 - Purple
91
6 - Cyan
92
7 - Light Gray
93
8 - Gray
94
9 - Pink
95
10 - Lime
96
11 - Yellow
97
12 - Light Blue
98
13 - Magenta
99
14 - Orange
100
15 - White
101
102
103
104
EXAMPLES:
105
106
SETBLOCK OR CHANGE EXISTING BANNER TO WHITE (15) BANNER FACING THE WEST (4) WITH A RED (2) MIDDLE LINE, AND A CYAN (6) SKULL*:
107
/setblock ~ ~ ~ minecraft:standing_banner 4 0 {Base:15,Patterns:[0:{Pattern:"ms",Color:2},1:{Pattern:"sku",Color:6}]}
108
109
GIVE NEAREST PLAYER THREE (3) LIME (10) FLAGS WITH A YELLOW (11) LEFT CORNER, AND A PURPLE (5) RIGHT CORNER*:
110
/give @p minecraft:banner 3 0 {BlockEntityTag:{Base:10,Patterns:[{Pattern:"tl",Color:11},{Pattern:"tr",Color:5}]}}
111
112
*These banners have two base colors. Only the "Base:#" appears on the banner, however, if the banner is washed in a cauldron the first data tag (BLACK:0), will show on the banner.