bc-minecraft-bedrock-command 1.2.25 → 1.2.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -22,10 +22,29 @@ exports.Vanilla = {
|
|
|
22
22
|
parameters: [
|
|
23
23
|
{ text: "camerashake", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
24
24
|
{ text: "add", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
25
|
-
{
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
25
|
+
{
|
|
26
|
+
text: "player",
|
|
27
|
+
type: ParameterType_1.ParameterType.selector,
|
|
28
|
+
required: true,
|
|
29
|
+
options: { playerOnly: true },
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
text: "intensity",
|
|
33
|
+
type: ParameterType_1.ParameterType.float,
|
|
34
|
+
required: false,
|
|
35
|
+
options: { minimum: 0, maximum: 4 },
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
text: "seconds",
|
|
39
|
+
type: ParameterType_1.ParameterType.float,
|
|
40
|
+
required: false,
|
|
41
|
+
options: { minimum: 0 },
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
text: "shake type",
|
|
45
|
+
type: ParameterType_1.ParameterType.cameraShakeType,
|
|
46
|
+
required: false,
|
|
47
|
+
},
|
|
29
48
|
],
|
|
30
49
|
},
|
|
31
50
|
{
|
|
@@ -34,7 +53,12 @@ exports.Vanilla = {
|
|
|
34
53
|
parameters: [
|
|
35
54
|
{ text: "camerashake", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
36
55
|
{ text: "stop", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
37
|
-
{
|
|
56
|
+
{
|
|
57
|
+
text: "player",
|
|
58
|
+
type: ParameterType_1.ParameterType.selector,
|
|
59
|
+
required: false,
|
|
60
|
+
options: { playerOnly: true },
|
|
61
|
+
},
|
|
38
62
|
],
|
|
39
63
|
},
|
|
40
64
|
],
|
|
@@ -45,7 +69,12 @@ exports.Vanilla = {
|
|
|
45
69
|
documentation: "Clears items from player inventory.",
|
|
46
70
|
parameters: [
|
|
47
71
|
{ text: "clear", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
48
|
-
{
|
|
72
|
+
{
|
|
73
|
+
text: "player",
|
|
74
|
+
type: ParameterType_1.ParameterType.selector,
|
|
75
|
+
required: false,
|
|
76
|
+
options: { playerOnly: true },
|
|
77
|
+
},
|
|
49
78
|
{ text: "item name", type: ParameterType_1.ParameterType.item, required: false },
|
|
50
79
|
{ text: "data", type: ParameterType_1.ParameterType.integer, required: false },
|
|
51
80
|
{ text: "max count", type: ParameterType_1.ParameterType.integer, required: false },
|
|
@@ -58,8 +87,17 @@ exports.Vanilla = {
|
|
|
58
87
|
name: "clearspawnpoint",
|
|
59
88
|
documentation: "Removes the spawnpoint from the player.",
|
|
60
89
|
parameters: [
|
|
61
|
-
{
|
|
62
|
-
|
|
90
|
+
{
|
|
91
|
+
text: "clearspawnpoint",
|
|
92
|
+
type: ParameterType_1.ParameterType.keyword,
|
|
93
|
+
required: true,
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
text: "player",
|
|
97
|
+
type: ParameterType_1.ParameterType.selector,
|
|
98
|
+
required: false,
|
|
99
|
+
options: { playerOnly: true },
|
|
100
|
+
},
|
|
63
101
|
],
|
|
64
102
|
},
|
|
65
103
|
],
|
|
@@ -76,9 +114,21 @@ exports.Vanilla = {
|
|
|
76
114
|
{ text: "end x", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
77
115
|
{ text: "end y", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
78
116
|
{ text: "end z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
79
|
-
{
|
|
80
|
-
|
|
81
|
-
|
|
117
|
+
{
|
|
118
|
+
text: "destination x",
|
|
119
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
120
|
+
required: true,
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
text: "destination y",
|
|
124
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
125
|
+
required: true,
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
text: "destination z",
|
|
129
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
130
|
+
required: true,
|
|
131
|
+
},
|
|
82
132
|
{ text: "mask", type: ParameterType_1.ParameterType.maskMode, required: false },
|
|
83
133
|
{ text: "clone mode", type: ParameterType_1.ParameterType.cloneMode, required: true },
|
|
84
134
|
],
|
|
@@ -94,9 +144,21 @@ exports.Vanilla = {
|
|
|
94
144
|
{ text: "end x", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
95
145
|
{ text: "end y", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
96
146
|
{ text: "end z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
97
|
-
{
|
|
98
|
-
|
|
99
|
-
|
|
147
|
+
{
|
|
148
|
+
text: "destination x",
|
|
149
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
150
|
+
required: true,
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
text: "destination y",
|
|
154
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
155
|
+
required: true,
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
text: "destination z",
|
|
159
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
160
|
+
required: true,
|
|
161
|
+
},
|
|
100
162
|
{ text: "filtered", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
101
163
|
{ text: "clone mode", type: ParameterType_1.ParameterType.cloneMode, required: true },
|
|
102
164
|
{ text: "tile name", type: ParameterType_1.ParameterType.block, required: true },
|
|
@@ -114,13 +176,29 @@ exports.Vanilla = {
|
|
|
114
176
|
{ text: "end x", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
115
177
|
{ text: "end y", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
116
178
|
{ text: "end z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
117
|
-
{
|
|
118
|
-
|
|
119
|
-
|
|
179
|
+
{
|
|
180
|
+
text: "destination x",
|
|
181
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
182
|
+
required: true,
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
text: "destination y",
|
|
186
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
187
|
+
required: true,
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
text: "destination z",
|
|
191
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
192
|
+
required: true,
|
|
193
|
+
},
|
|
120
194
|
{ text: "filtered", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
121
195
|
{ text: "clone mode", type: ParameterType_1.ParameterType.cloneMode, required: true },
|
|
122
196
|
{ text: "tile name", type: ParameterType_1.ParameterType.block, required: true },
|
|
123
|
-
{
|
|
197
|
+
{
|
|
198
|
+
text: "block states",
|
|
199
|
+
type: ParameterType_1.ParameterType.blockStates,
|
|
200
|
+
required: false,
|
|
201
|
+
},
|
|
124
202
|
],
|
|
125
203
|
},
|
|
126
204
|
],
|
|
@@ -147,7 +225,7 @@ exports.Vanilla = {
|
|
|
147
225
|
{ text: "entity", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
148
226
|
{ text: "damager", type: ParameterType_1.ParameterType.selector, required: true },
|
|
149
227
|
],
|
|
150
|
-
}
|
|
228
|
+
},
|
|
151
229
|
],
|
|
152
230
|
/**The daylock command */
|
|
153
231
|
daylock: [
|
|
@@ -168,8 +246,18 @@ exports.Vanilla = {
|
|
|
168
246
|
parameters: [
|
|
169
247
|
{ text: "dialogue", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
170
248
|
{ text: "open", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
171
|
-
{
|
|
172
|
-
|
|
249
|
+
{
|
|
250
|
+
text: "npc",
|
|
251
|
+
type: ParameterType_1.ParameterType.selector,
|
|
252
|
+
required: true,
|
|
253
|
+
options: { allowFakePlayers: false, playerOnly: false },
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
text: "player receiver",
|
|
257
|
+
type: ParameterType_1.ParameterType.selector,
|
|
258
|
+
required: true,
|
|
259
|
+
options: { playerOnly: true, allowFakePlayers: false },
|
|
260
|
+
},
|
|
173
261
|
{ text: "scene name", type: ParameterType_1.ParameterType.string, required: false },
|
|
174
262
|
],
|
|
175
263
|
},
|
|
@@ -179,9 +267,19 @@ exports.Vanilla = {
|
|
|
179
267
|
parameters: [
|
|
180
268
|
{ text: "dialogue", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
181
269
|
{ text: "change", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
182
|
-
{
|
|
270
|
+
{
|
|
271
|
+
text: "npc",
|
|
272
|
+
type: ParameterType_1.ParameterType.selector,
|
|
273
|
+
required: true,
|
|
274
|
+
options: { allowFakePlayers: false, playerOnly: false },
|
|
275
|
+
},
|
|
183
276
|
{ text: "scene name", type: ParameterType_1.ParameterType.string, required: true },
|
|
184
|
-
{
|
|
277
|
+
{
|
|
278
|
+
text: "player receiver",
|
|
279
|
+
type: ParameterType_1.ParameterType.selector,
|
|
280
|
+
required: false,
|
|
281
|
+
options: { playerOnly: true, allowFakePlayers: false },
|
|
282
|
+
},
|
|
185
283
|
],
|
|
186
284
|
},
|
|
187
285
|
],
|
|
@@ -196,6 +294,22 @@ exports.Vanilla = {
|
|
|
196
294
|
],
|
|
197
295
|
},
|
|
198
296
|
],
|
|
297
|
+
/**The deop command */
|
|
298
|
+
deop: [
|
|
299
|
+
{
|
|
300
|
+
name: "deop",
|
|
301
|
+
documentation: "Removes operator status from a player",
|
|
302
|
+
parameters: [
|
|
303
|
+
{ text: "deop", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
304
|
+
{
|
|
305
|
+
text: "player",
|
|
306
|
+
type: ParameterType_1.ParameterType.selector,
|
|
307
|
+
required: true,
|
|
308
|
+
options: { allowFakePlayers: true, playerOnly: true },
|
|
309
|
+
},
|
|
310
|
+
],
|
|
311
|
+
},
|
|
312
|
+
],
|
|
199
313
|
/**The effect command */
|
|
200
314
|
effect: [
|
|
201
315
|
{
|
|
@@ -207,7 +321,11 @@ exports.Vanilla = {
|
|
|
207
321
|
{ text: "effect", type: ParameterType_1.ParameterType.effect, required: true },
|
|
208
322
|
{ text: "seconds", type: ParameterType_1.ParameterType.integer, required: false },
|
|
209
323
|
{ text: "amplifier", type: ParameterType_1.ParameterType.integer, required: false },
|
|
210
|
-
{
|
|
324
|
+
{
|
|
325
|
+
text: "hide particles",
|
|
326
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
327
|
+
required: false,
|
|
328
|
+
},
|
|
211
329
|
],
|
|
212
330
|
},
|
|
213
331
|
{
|
|
@@ -227,7 +345,12 @@ exports.Vanilla = {
|
|
|
227
345
|
documentation: "Enchants a player item.",
|
|
228
346
|
parameters: [
|
|
229
347
|
{ text: "enchant", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
230
|
-
{
|
|
348
|
+
{
|
|
349
|
+
text: "player",
|
|
350
|
+
type: ParameterType_1.ParameterType.selector,
|
|
351
|
+
required: true,
|
|
352
|
+
options: { playerOnly: true },
|
|
353
|
+
},
|
|
231
354
|
{ text: "id", type: ParameterType_1.ParameterType.integer, required: true },
|
|
232
355
|
{ text: "level", type: ParameterType_1.ParameterType.integer, required: false },
|
|
233
356
|
],
|
|
@@ -237,7 +360,12 @@ exports.Vanilla = {
|
|
|
237
360
|
documentation: "Enchants a player item.",
|
|
238
361
|
parameters: [
|
|
239
362
|
{ text: "enchant", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
240
|
-
{
|
|
363
|
+
{
|
|
364
|
+
text: "player",
|
|
365
|
+
type: ParameterType_1.ParameterType.selector,
|
|
366
|
+
required: true,
|
|
367
|
+
options: { playerOnly: true },
|
|
368
|
+
},
|
|
241
369
|
{ text: "id", type: ParameterType_1.ParameterType.string, required: true },
|
|
242
370
|
{ text: "level", type: ParameterType_1.ParameterType.keyword, required: false },
|
|
243
371
|
],
|
|
@@ -305,8 +433,16 @@ exports.Vanilla = {
|
|
|
305
433
|
{ text: "tile name", type: ParameterType_1.ParameterType.block, required: true },
|
|
306
434
|
{ text: "tile data", type: ParameterType_1.ParameterType.integer, required: true },
|
|
307
435
|
{ text: "replace", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
308
|
-
{
|
|
309
|
-
|
|
436
|
+
{
|
|
437
|
+
text: "replace tile name",
|
|
438
|
+
type: ParameterType_1.ParameterType.block,
|
|
439
|
+
required: false,
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
text: "replace data value",
|
|
443
|
+
type: ParameterType_1.ParameterType.integer,
|
|
444
|
+
required: false,
|
|
445
|
+
},
|
|
310
446
|
],
|
|
311
447
|
},
|
|
312
448
|
{
|
|
@@ -323,8 +459,16 @@ exports.Vanilla = {
|
|
|
323
459
|
{ text: "tile name", type: ParameterType_1.ParameterType.block, required: true },
|
|
324
460
|
{ text: "tile data", type: ParameterType_1.ParameterType.integer, required: true },
|
|
325
461
|
{ text: "replace", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
326
|
-
{
|
|
327
|
-
|
|
462
|
+
{
|
|
463
|
+
text: "replace tile name",
|
|
464
|
+
type: ParameterType_1.ParameterType.block,
|
|
465
|
+
required: false,
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
text: "replace block states",
|
|
469
|
+
type: ParameterType_1.ParameterType.blockStates,
|
|
470
|
+
required: false,
|
|
471
|
+
},
|
|
328
472
|
],
|
|
329
473
|
},
|
|
330
474
|
{
|
|
@@ -339,10 +483,22 @@ exports.Vanilla = {
|
|
|
339
483
|
{ text: "to y", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
340
484
|
{ text: "to z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
341
485
|
{ text: "tile name", type: ParameterType_1.ParameterType.block, required: true },
|
|
342
|
-
{
|
|
486
|
+
{
|
|
487
|
+
text: "block states",
|
|
488
|
+
type: ParameterType_1.ParameterType.blockStates,
|
|
489
|
+
required: true,
|
|
490
|
+
},
|
|
343
491
|
{ text: "replace", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
344
|
-
{
|
|
345
|
-
|
|
492
|
+
{
|
|
493
|
+
text: "replace tile name",
|
|
494
|
+
type: ParameterType_1.ParameterType.block,
|
|
495
|
+
required: false,
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
text: "replace block states",
|
|
499
|
+
type: ParameterType_1.ParameterType.blockStates,
|
|
500
|
+
required: false,
|
|
501
|
+
},
|
|
346
502
|
],
|
|
347
503
|
},
|
|
348
504
|
{
|
|
@@ -372,7 +528,11 @@ exports.Vanilla = {
|
|
|
372
528
|
{ text: "victim", type: ParameterType_1.ParameterType.selector, required: true },
|
|
373
529
|
{ text: "push", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
374
530
|
{ text: "fog id", type: ParameterType_1.ParameterType.string, required: true },
|
|
375
|
-
{
|
|
531
|
+
{
|
|
532
|
+
text: "user provided id",
|
|
533
|
+
type: ParameterType_1.ParameterType.string,
|
|
534
|
+
required: true,
|
|
535
|
+
},
|
|
376
536
|
],
|
|
377
537
|
},
|
|
378
538
|
{
|
|
@@ -382,7 +542,11 @@ exports.Vanilla = {
|
|
|
382
542
|
{ text: "fog", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
383
543
|
{ text: "victim", type: ParameterType_1.ParameterType.selector, required: true },
|
|
384
544
|
{ text: "pop", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
385
|
-
{
|
|
545
|
+
{
|
|
546
|
+
text: "user provided id",
|
|
547
|
+
type: ParameterType_1.ParameterType.string,
|
|
548
|
+
required: true,
|
|
549
|
+
},
|
|
386
550
|
],
|
|
387
551
|
},
|
|
388
552
|
{
|
|
@@ -392,7 +556,11 @@ exports.Vanilla = {
|
|
|
392
556
|
{ text: "fog", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
393
557
|
{ text: "victim", type: ParameterType_1.ParameterType.selector, required: true },
|
|
394
558
|
{ text: "remove", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
395
|
-
{
|
|
559
|
+
{
|
|
560
|
+
text: "user provided id",
|
|
561
|
+
type: ParameterType_1.ParameterType.string,
|
|
562
|
+
required: true,
|
|
563
|
+
},
|
|
396
564
|
],
|
|
397
565
|
},
|
|
398
566
|
],
|
|
@@ -415,7 +583,12 @@ exports.Vanilla = {
|
|
|
415
583
|
parameters: [
|
|
416
584
|
{ text: "gamemode", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
417
585
|
{ text: "gamemode", type: ParameterType_1.ParameterType.gamemode, required: true },
|
|
418
|
-
{
|
|
586
|
+
{
|
|
587
|
+
text: "player",
|
|
588
|
+
type: ParameterType_1.ParameterType.selector,
|
|
589
|
+
required: false,
|
|
590
|
+
options: { playerOnly: true },
|
|
591
|
+
},
|
|
419
592
|
],
|
|
420
593
|
},
|
|
421
594
|
],
|
|
@@ -426,7 +599,11 @@ exports.Vanilla = {
|
|
|
426
599
|
documentation: "Whether command blocks should notify admins when they perform commands.",
|
|
427
600
|
parameters: [
|
|
428
601
|
{ text: "gamerule", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
429
|
-
{
|
|
602
|
+
{
|
|
603
|
+
text: "commandblockoutput",
|
|
604
|
+
type: ParameterType_1.ParameterType.keyword,
|
|
605
|
+
required: true,
|
|
606
|
+
},
|
|
430
607
|
{ text: "value", type: ParameterType_1.ParameterType.boolean, required: false },
|
|
431
608
|
],
|
|
432
609
|
},
|
|
@@ -435,7 +612,11 @@ exports.Vanilla = {
|
|
|
435
612
|
documentation: "Whether command blocks should be enabled in-game.",
|
|
436
613
|
parameters: [
|
|
437
614
|
{ text: "gamerule", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
438
|
-
{
|
|
615
|
+
{
|
|
616
|
+
text: "commandblocksenabled",
|
|
617
|
+
type: ParameterType_1.ParameterType.keyword,
|
|
618
|
+
required: true,
|
|
619
|
+
},
|
|
439
620
|
{ text: "value", type: ParameterType_1.ParameterType.boolean, required: false },
|
|
440
621
|
],
|
|
441
622
|
},
|
|
@@ -444,7 +625,11 @@ exports.Vanilla = {
|
|
|
444
625
|
documentation: "Whether the daylight cycle and moon phases progress.",
|
|
445
626
|
parameters: [
|
|
446
627
|
{ text: "gamerule", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
447
|
-
{
|
|
628
|
+
{
|
|
629
|
+
text: "dodaylightcycle",
|
|
630
|
+
type: ParameterType_1.ParameterType.keyword,
|
|
631
|
+
required: true,
|
|
632
|
+
},
|
|
448
633
|
{ text: "value", type: ParameterType_1.ParameterType.boolean, required: false },
|
|
449
634
|
],
|
|
450
635
|
},
|
|
@@ -471,7 +656,11 @@ exports.Vanilla = {
|
|
|
471
656
|
documentation: "Whether to show the player a respawn screen or immediate respawn.",
|
|
472
657
|
parameters: [
|
|
473
658
|
{ text: "gamerule", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
474
|
-
{
|
|
659
|
+
{
|
|
660
|
+
text: "doimmediaterespawn",
|
|
661
|
+
type: ParameterType_1.ParameterType.keyword,
|
|
662
|
+
required: true,
|
|
663
|
+
},
|
|
475
664
|
{ text: "value", type: ParameterType_1.ParameterType.boolean, required: false },
|
|
476
665
|
],
|
|
477
666
|
},
|
|
@@ -561,7 +750,11 @@ exports.Vanilla = {
|
|
|
561
750
|
documentation: "The maximum amount of commands that can be run in a single call (sub calls included)",
|
|
562
751
|
parameters: [
|
|
563
752
|
{ text: "gamerule", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
564
|
-
{
|
|
753
|
+
{
|
|
754
|
+
text: "functioncommandlimit",
|
|
755
|
+
type: ParameterType_1.ParameterType.keyword,
|
|
756
|
+
required: true,
|
|
757
|
+
},
|
|
565
758
|
{ text: "amount", type: ParameterType_1.ParameterType.integer, required: false },
|
|
566
759
|
],
|
|
567
760
|
},
|
|
@@ -579,7 +772,11 @@ exports.Vanilla = {
|
|
|
579
772
|
documentation: "The maximum amount of commands that can be run in a single call (sub calls included).",
|
|
580
773
|
parameters: [
|
|
581
774
|
{ text: "gamerule", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
582
|
-
{
|
|
775
|
+
{
|
|
776
|
+
text: "maxcommandchainlength",
|
|
777
|
+
type: ParameterType_1.ParameterType.keyword,
|
|
778
|
+
required: true,
|
|
779
|
+
},
|
|
583
780
|
{ text: "int", type: ParameterType_1.ParameterType.integer, required: false },
|
|
584
781
|
],
|
|
585
782
|
},
|
|
@@ -597,7 +794,11 @@ exports.Vanilla = {
|
|
|
597
794
|
documentation: "Whether or not players regain health by regen.",
|
|
598
795
|
parameters: [
|
|
599
796
|
{ text: "gamerule", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
600
|
-
{
|
|
797
|
+
{
|
|
798
|
+
text: "naturalregeneration",
|
|
799
|
+
type: ParameterType_1.ParameterType.keyword,
|
|
800
|
+
required: true,
|
|
801
|
+
},
|
|
601
802
|
{ text: "value", type: ParameterType_1.ParameterType.boolean, required: false },
|
|
602
803
|
],
|
|
603
804
|
},
|
|
@@ -615,7 +816,11 @@ exports.Vanilla = {
|
|
|
615
816
|
documentation: "How many ticks the server can randomly progress elements of the world, such a crop growing.",
|
|
616
817
|
parameters: [
|
|
617
818
|
{ text: "gamerule", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
618
|
-
{
|
|
819
|
+
{
|
|
820
|
+
text: "randomtickspeed",
|
|
821
|
+
type: ParameterType_1.ParameterType.keyword,
|
|
822
|
+
required: true,
|
|
823
|
+
},
|
|
619
824
|
{ text: "int", type: ParameterType_1.ParameterType.integer, required: false },
|
|
620
825
|
],
|
|
621
826
|
},
|
|
@@ -624,7 +829,11 @@ exports.Vanilla = {
|
|
|
624
829
|
documentation: "??",
|
|
625
830
|
parameters: [
|
|
626
831
|
{ text: "gamerule", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
627
|
-
{
|
|
832
|
+
{
|
|
833
|
+
text: "respawnblocksexplode",
|
|
834
|
+
type: ParameterType_1.ParameterType.keyword,
|
|
835
|
+
required: true,
|
|
836
|
+
},
|
|
628
837
|
{ text: "value", type: ParameterType_1.ParameterType.boolean, required: false },
|
|
629
838
|
],
|
|
630
839
|
},
|
|
@@ -633,7 +842,11 @@ exports.Vanilla = {
|
|
|
633
842
|
documentation: "Whether or not commands send back feedback to players, such as /tag @s list",
|
|
634
843
|
parameters: [
|
|
635
844
|
{ text: "gamerule", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
636
|
-
{
|
|
845
|
+
{
|
|
846
|
+
text: "sendcommandfeedback",
|
|
847
|
+
type: ParameterType_1.ParameterType.keyword,
|
|
848
|
+
required: true,
|
|
849
|
+
},
|
|
637
850
|
{ text: "value", type: ParameterType_1.ParameterType.boolean, required: false },
|
|
638
851
|
],
|
|
639
852
|
},
|
|
@@ -642,7 +855,11 @@ exports.Vanilla = {
|
|
|
642
855
|
documentation: "Sets or queries a game rule value.",
|
|
643
856
|
parameters: [
|
|
644
857
|
{ text: "gamerule", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
645
|
-
{
|
|
858
|
+
{
|
|
859
|
+
text: "showbordereffect",
|
|
860
|
+
type: ParameterType_1.ParameterType.keyword,
|
|
861
|
+
required: true,
|
|
862
|
+
},
|
|
646
863
|
{ text: "value", type: ParameterType_1.ParameterType.boolean, required: false },
|
|
647
864
|
],
|
|
648
865
|
},
|
|
@@ -651,7 +868,11 @@ exports.Vanilla = {
|
|
|
651
868
|
documentation: "Whether or not global coordinates display is showed.",
|
|
652
869
|
parameters: [
|
|
653
870
|
{ text: "gamerule", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
654
|
-
{
|
|
871
|
+
{
|
|
872
|
+
text: "showcoordinates",
|
|
873
|
+
type: ParameterType_1.ParameterType.keyword,
|
|
874
|
+
required: true,
|
|
875
|
+
},
|
|
655
876
|
{ text: "value", type: ParameterType_1.ParameterType.boolean, required: false },
|
|
656
877
|
],
|
|
657
878
|
},
|
|
@@ -660,7 +881,11 @@ exports.Vanilla = {
|
|
|
660
881
|
documentation: "Whether or not the death message are outputted",
|
|
661
882
|
parameters: [
|
|
662
883
|
{ text: "gamerule", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
663
|
-
{
|
|
884
|
+
{
|
|
885
|
+
text: "showdeathmessages",
|
|
886
|
+
type: ParameterType_1.ParameterType.keyword,
|
|
887
|
+
required: true,
|
|
888
|
+
},
|
|
664
889
|
{ text: "value", type: ParameterType_1.ParameterType.boolean, required: false },
|
|
665
890
|
],
|
|
666
891
|
},
|
|
@@ -699,7 +924,12 @@ exports.Vanilla = {
|
|
|
699
924
|
documentation: "Gives an item to a player.",
|
|
700
925
|
parameters: [
|
|
701
926
|
{ text: "give", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
702
|
-
{
|
|
927
|
+
{
|
|
928
|
+
text: "player",
|
|
929
|
+
type: ParameterType_1.ParameterType.selector,
|
|
930
|
+
required: true,
|
|
931
|
+
options: { playerOnly: true },
|
|
932
|
+
},
|
|
703
933
|
{ text: "item name", type: ParameterType_1.ParameterType.item, required: true },
|
|
704
934
|
{ text: "amount", type: ParameterType_1.ParameterType.integer, required: false },
|
|
705
935
|
{ text: "data", type: ParameterType_1.ParameterType.integer, required: false },
|
|
@@ -714,7 +944,12 @@ exports.Vanilla = {
|
|
|
714
944
|
documentation: "Kicks the specified players.",
|
|
715
945
|
parameters: [
|
|
716
946
|
{ text: "kick", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
717
|
-
{
|
|
947
|
+
{
|
|
948
|
+
text: "selector",
|
|
949
|
+
type: ParameterType_1.ParameterType.selector,
|
|
950
|
+
required: false,
|
|
951
|
+
options: { playerOnly: true },
|
|
952
|
+
},
|
|
718
953
|
],
|
|
719
954
|
},
|
|
720
955
|
],
|
|
@@ -754,7 +989,7 @@ exports.Vanilla = {
|
|
|
754
989
|
{ text: "kill", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
755
990
|
{ text: "entity target", type: ParameterType_1.ParameterType.selector, required: true },
|
|
756
991
|
{ text: "item", type: ParameterType_1.ParameterType.item, required: false },
|
|
757
|
-
]
|
|
992
|
+
],
|
|
758
993
|
},
|
|
759
994
|
{
|
|
760
995
|
name: "loot",
|
|
@@ -768,7 +1003,7 @@ exports.Vanilla = {
|
|
|
768
1003
|
{ text: "kill", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
769
1004
|
{ text: "entity target", type: ParameterType_1.ParameterType.selector, required: true },
|
|
770
1005
|
{ text: "item", type: ParameterType_1.ParameterType.handType, required: false },
|
|
771
|
-
]
|
|
1006
|
+
],
|
|
772
1007
|
},
|
|
773
1008
|
{
|
|
774
1009
|
name: "loot",
|
|
@@ -782,7 +1017,7 @@ exports.Vanilla = {
|
|
|
782
1017
|
{ text: "loot", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
783
1018
|
{ text: "loot table", type: ParameterType_1.ParameterType.lootTable, required: true },
|
|
784
1019
|
{ text: "item", type: ParameterType_1.ParameterType.item, required: false },
|
|
785
|
-
]
|
|
1020
|
+
],
|
|
786
1021
|
},
|
|
787
1022
|
{
|
|
788
1023
|
name: "loot",
|
|
@@ -796,8 +1031,8 @@ exports.Vanilla = {
|
|
|
796
1031
|
{ text: "loot", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
797
1032
|
{ text: "loot table", type: ParameterType_1.ParameterType.lootTable, required: true },
|
|
798
1033
|
{ text: "item", type: ParameterType_1.ParameterType.handType, required: false },
|
|
799
|
-
]
|
|
800
|
-
}
|
|
1034
|
+
],
|
|
1035
|
+
},
|
|
801
1036
|
],
|
|
802
1037
|
/**The me command */
|
|
803
1038
|
me: [
|
|
@@ -831,9 +1066,23 @@ exports.Vanilla = {
|
|
|
831
1066
|
{ text: "music", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
832
1067
|
{ text: "queue", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
833
1068
|
{ text: "track name", type: ParameterType_1.ParameterType.string, required: true },
|
|
834
|
-
{
|
|
835
|
-
|
|
836
|
-
|
|
1069
|
+
{
|
|
1070
|
+
text: "volume",
|
|
1071
|
+
type: ParameterType_1.ParameterType.float,
|
|
1072
|
+
required: false,
|
|
1073
|
+
options: { minimum: 0.01, maximum: 1 },
|
|
1074
|
+
},
|
|
1075
|
+
{
|
|
1076
|
+
text: "fade seconds",
|
|
1077
|
+
type: ParameterType_1.ParameterType.float,
|
|
1078
|
+
required: false,
|
|
1079
|
+
options: { minimum: 0 },
|
|
1080
|
+
},
|
|
1081
|
+
{
|
|
1082
|
+
text: "repeat",
|
|
1083
|
+
type: ParameterType_1.ParameterType.musicRepeatMode,
|
|
1084
|
+
required: false,
|
|
1085
|
+
},
|
|
837
1086
|
],
|
|
838
1087
|
},
|
|
839
1088
|
{
|
|
@@ -843,9 +1092,23 @@ exports.Vanilla = {
|
|
|
843
1092
|
{ text: "music", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
844
1093
|
{ text: "play", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
845
1094
|
{ text: "track name", type: ParameterType_1.ParameterType.string, required: true },
|
|
846
|
-
{
|
|
847
|
-
|
|
848
|
-
|
|
1095
|
+
{
|
|
1096
|
+
text: "volume",
|
|
1097
|
+
type: ParameterType_1.ParameterType.float,
|
|
1098
|
+
required: false,
|
|
1099
|
+
options: { minimum: 0.01, maximum: 1 },
|
|
1100
|
+
},
|
|
1101
|
+
{
|
|
1102
|
+
text: "fade seconds",
|
|
1103
|
+
type: ParameterType_1.ParameterType.float,
|
|
1104
|
+
required: false,
|
|
1105
|
+
options: { minimum: 0 },
|
|
1106
|
+
},
|
|
1107
|
+
{
|
|
1108
|
+
text: "repeat",
|
|
1109
|
+
type: ParameterType_1.ParameterType.musicRepeatMode,
|
|
1110
|
+
required: false,
|
|
1111
|
+
},
|
|
849
1112
|
],
|
|
850
1113
|
},
|
|
851
1114
|
{
|
|
@@ -854,7 +1117,12 @@ exports.Vanilla = {
|
|
|
854
1117
|
parameters: [
|
|
855
1118
|
{ text: "music", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
856
1119
|
{ text: "stop", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
857
|
-
{
|
|
1120
|
+
{
|
|
1121
|
+
text: "fade seconds",
|
|
1122
|
+
type: ParameterType_1.ParameterType.float,
|
|
1123
|
+
required: false,
|
|
1124
|
+
options: { minimum: 0 },
|
|
1125
|
+
},
|
|
858
1126
|
],
|
|
859
1127
|
},
|
|
860
1128
|
{
|
|
@@ -863,7 +1131,12 @@ exports.Vanilla = {
|
|
|
863
1131
|
parameters: [
|
|
864
1132
|
{ text: "music", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
865
1133
|
{ text: "volume", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
866
|
-
{
|
|
1134
|
+
{
|
|
1135
|
+
text: "volume",
|
|
1136
|
+
type: ParameterType_1.ParameterType.float,
|
|
1137
|
+
required: false,
|
|
1138
|
+
options: { minimum: 0.01, maximum: 1 },
|
|
1139
|
+
},
|
|
867
1140
|
],
|
|
868
1141
|
},
|
|
869
1142
|
],
|
|
@@ -874,7 +1147,12 @@ exports.Vanilla = {
|
|
|
874
1147
|
documentation: "Grants operator status to a player.",
|
|
875
1148
|
parameters: [
|
|
876
1149
|
{ text: "op", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
877
|
-
{
|
|
1150
|
+
{
|
|
1151
|
+
text: "player",
|
|
1152
|
+
type: ParameterType_1.ParameterType.selector,
|
|
1153
|
+
required: true,
|
|
1154
|
+
options: { playerOnly: true },
|
|
1155
|
+
},
|
|
878
1156
|
],
|
|
879
1157
|
},
|
|
880
1158
|
],
|
|
@@ -898,7 +1176,12 @@ exports.Vanilla = {
|
|
|
898
1176
|
parameters: [
|
|
899
1177
|
{ text: "playsound", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
900
1178
|
{ text: "sound", type: ParameterType_1.ParameterType.sound, required: true },
|
|
901
|
-
{
|
|
1179
|
+
{
|
|
1180
|
+
text: "player",
|
|
1181
|
+
type: ParameterType_1.ParameterType.selector,
|
|
1182
|
+
required: false,
|
|
1183
|
+
options: { playerOnly: true },
|
|
1184
|
+
},
|
|
902
1185
|
{ text: "position x", type: ParameterType_1.ParameterType.coordinate, required: false },
|
|
903
1186
|
{ text: "position y", type: ParameterType_1.ParameterType.coordinate, required: false },
|
|
904
1187
|
{ text: "position z", type: ParameterType_1.ParameterType.coordinate, required: false },
|
|
@@ -920,8 +1203,16 @@ exports.Vanilla = {
|
|
|
920
1203
|
{ text: "entity", type: ParameterType_1.ParameterType.selector, required: true },
|
|
921
1204
|
{ text: "animation", type: ParameterType_1.ParameterType.animation, required: true },
|
|
922
1205
|
{ text: "next state", type: ParameterType_1.ParameterType.string, required: false },
|
|
923
|
-
{
|
|
924
|
-
|
|
1206
|
+
{
|
|
1207
|
+
text: "stop expression",
|
|
1208
|
+
type: ParameterType_1.ParameterType.string,
|
|
1209
|
+
required: false,
|
|
1210
|
+
},
|
|
1211
|
+
{
|
|
1212
|
+
text: "controller name",
|
|
1213
|
+
type: ParameterType_1.ParameterType.string,
|
|
1214
|
+
required: false,
|
|
1215
|
+
},
|
|
925
1216
|
],
|
|
926
1217
|
},
|
|
927
1218
|
],
|
|
@@ -955,7 +1246,11 @@ exports.Vanilla = {
|
|
|
955
1246
|
{ text: "position z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
956
1247
|
{ text: "slot.container", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
957
1248
|
{ text: "slotId", type: ParameterType_1.ParameterType.slotID, required: true },
|
|
958
|
-
{
|
|
1249
|
+
{
|
|
1250
|
+
text: "replacemode",
|
|
1251
|
+
type: ParameterType_1.ParameterType.replaceMode,
|
|
1252
|
+
required: true,
|
|
1253
|
+
},
|
|
959
1254
|
{ text: "item name", type: ParameterType_1.ParameterType.item, required: true },
|
|
960
1255
|
{ text: "amount", type: ParameterType_1.ParameterType.keyword, required: false },
|
|
961
1256
|
{ text: "data", type: ParameterType_1.ParameterType.keyword, required: false },
|
|
@@ -969,7 +1264,11 @@ exports.Vanilla = {
|
|
|
969
1264
|
{ text: "replaceitem", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
970
1265
|
{ text: "entity", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
971
1266
|
{ text: "selector", type: ParameterType_1.ParameterType.selector, required: true },
|
|
972
|
-
{
|
|
1267
|
+
{
|
|
1268
|
+
text: "slot.container",
|
|
1269
|
+
type: ParameterType_1.ParameterType.slotType,
|
|
1270
|
+
required: true,
|
|
1271
|
+
},
|
|
973
1272
|
{ text: "slotId", type: ParameterType_1.ParameterType.slotID, required: true },
|
|
974
1273
|
{ text: "item name", type: ParameterType_1.ParameterType.item, required: true },
|
|
975
1274
|
{ text: "amount", type: ParameterType_1.ParameterType.integer, required: false },
|
|
@@ -986,7 +1285,11 @@ exports.Vanilla = {
|
|
|
986
1285
|
{ text: "selector", type: ParameterType_1.ParameterType.selector, required: true },
|
|
987
1286
|
{ text: "slot type", type: ParameterType_1.ParameterType.slotType, required: true },
|
|
988
1287
|
{ text: "slot id", type: ParameterType_1.ParameterType.slotID, required: true },
|
|
989
|
-
{
|
|
1288
|
+
{
|
|
1289
|
+
text: "replace mode",
|
|
1290
|
+
type: ParameterType_1.ParameterType.replaceMode,
|
|
1291
|
+
required: true,
|
|
1292
|
+
},
|
|
990
1293
|
{ text: "item name", type: ParameterType_1.ParameterType.item, required: true },
|
|
991
1294
|
{ text: "amount", type: ParameterType_1.ParameterType.integer, required: false },
|
|
992
1295
|
{ text: "data", type: ParameterType_1.ParameterType.integer, required: false },
|
|
@@ -1004,8 +1307,16 @@ exports.Vanilla = {
|
|
|
1004
1307
|
{ text: "riders", type: ParameterType_1.ParameterType.selector, required: true },
|
|
1005
1308
|
{ text: "start_riding", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1006
1309
|
{ text: "ride", type: ParameterType_1.ParameterType.selector, required: true },
|
|
1007
|
-
{
|
|
1008
|
-
|
|
1310
|
+
{
|
|
1311
|
+
text: "teleport",
|
|
1312
|
+
type: ParameterType_1.ParameterType.teleportRules,
|
|
1313
|
+
required: false,
|
|
1314
|
+
},
|
|
1315
|
+
{
|
|
1316
|
+
text: "fill mode",
|
|
1317
|
+
type: ParameterType_1.ParameterType.ridefillMode,
|
|
1318
|
+
required: false,
|
|
1319
|
+
},
|
|
1009
1320
|
],
|
|
1010
1321
|
},
|
|
1011
1322
|
{
|
|
@@ -1104,7 +1415,11 @@ exports.Vanilla = {
|
|
|
1104
1415
|
{ text: "on_area_loaded", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1105
1416
|
{ text: "add", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1106
1417
|
{ text: "tickingarea", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1107
|
-
{
|
|
1418
|
+
{
|
|
1419
|
+
text: "tickingarea name",
|
|
1420
|
+
type: ParameterType_1.ParameterType.tickingarea,
|
|
1421
|
+
required: true,
|
|
1422
|
+
},
|
|
1108
1423
|
{ text: "function", type: ParameterType_1.ParameterType.function, required: true },
|
|
1109
1424
|
],
|
|
1110
1425
|
},
|
|
@@ -1208,7 +1523,12 @@ exports.Vanilla = {
|
|
|
1208
1523
|
{ text: "scoreboard", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1209
1524
|
{ text: "players", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1210
1525
|
{ text: "add", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1211
|
-
{
|
|
1526
|
+
{
|
|
1527
|
+
text: "entity",
|
|
1528
|
+
type: ParameterType_1.ParameterType.selector,
|
|
1529
|
+
required: true,
|
|
1530
|
+
options: { allowFakePlayers: true },
|
|
1531
|
+
},
|
|
1212
1532
|
{ text: "objective", type: ParameterType_1.ParameterType.objective, required: true },
|
|
1213
1533
|
{ text: "count", type: ParameterType_1.ParameterType.integer, required: true },
|
|
1214
1534
|
],
|
|
@@ -1220,7 +1540,12 @@ exports.Vanilla = {
|
|
|
1220
1540
|
{ text: "scoreboard", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1221
1541
|
{ text: "players", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1222
1542
|
{ text: "list", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1223
|
-
{
|
|
1543
|
+
{
|
|
1544
|
+
text: "entity",
|
|
1545
|
+
type: ParameterType_1.ParameterType.selector,
|
|
1546
|
+
required: false,
|
|
1547
|
+
options: { allowFakePlayers: true },
|
|
1548
|
+
},
|
|
1224
1549
|
],
|
|
1225
1550
|
},
|
|
1226
1551
|
{
|
|
@@ -1230,10 +1555,20 @@ exports.Vanilla = {
|
|
|
1230
1555
|
{ text: "scoreboard", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1231
1556
|
{ text: "players", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1232
1557
|
{ text: "operation", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1233
|
-
{
|
|
1558
|
+
{
|
|
1559
|
+
text: "destination",
|
|
1560
|
+
type: ParameterType_1.ParameterType.selector,
|
|
1561
|
+
required: true,
|
|
1562
|
+
options: { allowFakePlayers: true },
|
|
1563
|
+
},
|
|
1234
1564
|
{ text: "objective", type: ParameterType_1.ParameterType.objective, required: true },
|
|
1235
1565
|
{ text: "operation", type: ParameterType_1.ParameterType.operation, required: true },
|
|
1236
|
-
{
|
|
1566
|
+
{
|
|
1567
|
+
text: "selector",
|
|
1568
|
+
type: ParameterType_1.ParameterType.selector,
|
|
1569
|
+
required: true,
|
|
1570
|
+
options: { allowFakePlayers: true },
|
|
1571
|
+
},
|
|
1237
1572
|
{ text: "objective", type: ParameterType_1.ParameterType.objective, required: true },
|
|
1238
1573
|
],
|
|
1239
1574
|
},
|
|
@@ -1244,7 +1579,12 @@ exports.Vanilla = {
|
|
|
1244
1579
|
{ text: "scoreboard", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1245
1580
|
{ text: "players", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1246
1581
|
{ text: "random", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1247
|
-
{
|
|
1582
|
+
{
|
|
1583
|
+
text: "entity",
|
|
1584
|
+
type: ParameterType_1.ParameterType.selector,
|
|
1585
|
+
required: true,
|
|
1586
|
+
options: { allowFakePlayers: true },
|
|
1587
|
+
},
|
|
1248
1588
|
{ text: "objective", type: ParameterType_1.ParameterType.objective, required: true },
|
|
1249
1589
|
{ text: "min", type: ParameterType_1.ParameterType.integer, required: true },
|
|
1250
1590
|
{ text: "max", type: ParameterType_1.ParameterType.integer, required: true },
|
|
@@ -1257,7 +1597,12 @@ exports.Vanilla = {
|
|
|
1257
1597
|
{ text: "scoreboard", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1258
1598
|
{ text: "players", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1259
1599
|
{ text: "remove", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1260
|
-
{
|
|
1600
|
+
{
|
|
1601
|
+
text: "entity",
|
|
1602
|
+
type: ParameterType_1.ParameterType.selector,
|
|
1603
|
+
required: true,
|
|
1604
|
+
options: { allowFakePlayers: true },
|
|
1605
|
+
},
|
|
1261
1606
|
{ text: "objective", type: ParameterType_1.ParameterType.objective, required: true },
|
|
1262
1607
|
{ text: "count", type: ParameterType_1.ParameterType.integer, required: true },
|
|
1263
1608
|
],
|
|
@@ -1269,7 +1614,12 @@ exports.Vanilla = {
|
|
|
1269
1614
|
{ text: "scoreboard", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1270
1615
|
{ text: "players", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1271
1616
|
{ text: "reset", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1272
|
-
{
|
|
1617
|
+
{
|
|
1618
|
+
text: "entity",
|
|
1619
|
+
type: ParameterType_1.ParameterType.selector,
|
|
1620
|
+
required: true,
|
|
1621
|
+
options: { wildcard: true, allowFakePlayers: true },
|
|
1622
|
+
},
|
|
1273
1623
|
{ text: "objective", type: ParameterType_1.ParameterType.objective, required: false },
|
|
1274
1624
|
],
|
|
1275
1625
|
},
|
|
@@ -1280,7 +1630,12 @@ exports.Vanilla = {
|
|
|
1280
1630
|
{ text: "scoreboard", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1281
1631
|
{ text: "players", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1282
1632
|
{ text: "set", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1283
|
-
{
|
|
1633
|
+
{
|
|
1634
|
+
text: "entity",
|
|
1635
|
+
type: ParameterType_1.ParameterType.selector,
|
|
1636
|
+
required: true,
|
|
1637
|
+
options: { allowFakePlayers: true },
|
|
1638
|
+
},
|
|
1284
1639
|
{ text: "objective", type: ParameterType_1.ParameterType.objective, required: true },
|
|
1285
1640
|
{ text: "score", type: ParameterType_1.ParameterType.integer, required: true },
|
|
1286
1641
|
],
|
|
@@ -1292,10 +1647,25 @@ exports.Vanilla = {
|
|
|
1292
1647
|
{ text: "scoreboard", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1293
1648
|
{ text: "players", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1294
1649
|
{ text: "test", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1295
|
-
{
|
|
1650
|
+
{
|
|
1651
|
+
text: "entity",
|
|
1652
|
+
type: ParameterType_1.ParameterType.selector,
|
|
1653
|
+
required: true,
|
|
1654
|
+
options: { allowFakePlayers: true },
|
|
1655
|
+
},
|
|
1296
1656
|
{ text: "objective", type: ParameterType_1.ParameterType.objective, required: true },
|
|
1297
|
-
{
|
|
1298
|
-
|
|
1657
|
+
{
|
|
1658
|
+
text: "min",
|
|
1659
|
+
type: ParameterType_1.ParameterType.integer,
|
|
1660
|
+
required: true,
|
|
1661
|
+
options: { wildcard: true },
|
|
1662
|
+
},
|
|
1663
|
+
{
|
|
1664
|
+
text: "max",
|
|
1665
|
+
type: ParameterType_1.ParameterType.integer,
|
|
1666
|
+
required: true,
|
|
1667
|
+
options: { wildcard: true },
|
|
1668
|
+
},
|
|
1299
1669
|
],
|
|
1300
1670
|
},
|
|
1301
1671
|
],
|
|
@@ -1311,7 +1681,11 @@ exports.Vanilla = {
|
|
|
1311
1681
|
{ text: "position z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
1312
1682
|
{ text: "tile name", type: ParameterType_1.ParameterType.block, required: true },
|
|
1313
1683
|
{ text: "tile data", type: ParameterType_1.ParameterType.integer, required: false },
|
|
1314
|
-
{
|
|
1684
|
+
{
|
|
1685
|
+
text: "old block mode",
|
|
1686
|
+
type: ParameterType_1.ParameterType.oldBlockMode,
|
|
1687
|
+
required: false,
|
|
1688
|
+
},
|
|
1315
1689
|
],
|
|
1316
1690
|
},
|
|
1317
1691
|
{
|
|
@@ -1323,8 +1697,16 @@ exports.Vanilla = {
|
|
|
1323
1697
|
{ text: "position y", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
1324
1698
|
{ text: "position z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
1325
1699
|
{ text: "tile name", type: ParameterType_1.ParameterType.block, required: true },
|
|
1326
|
-
{
|
|
1327
|
-
|
|
1700
|
+
{
|
|
1701
|
+
text: "block states",
|
|
1702
|
+
type: ParameterType_1.ParameterType.blockStates,
|
|
1703
|
+
required: false,
|
|
1704
|
+
},
|
|
1705
|
+
{
|
|
1706
|
+
text: "old block mode",
|
|
1707
|
+
type: ParameterType_1.ParameterType.oldBlockMode,
|
|
1708
|
+
required: false,
|
|
1709
|
+
},
|
|
1328
1710
|
],
|
|
1329
1711
|
},
|
|
1330
1712
|
],
|
|
@@ -1348,7 +1730,12 @@ exports.Vanilla = {
|
|
|
1348
1730
|
documentation: "Sets the maximum number of players for this game session",
|
|
1349
1731
|
parameters: [
|
|
1350
1732
|
{ text: "setmaxplayers", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1351
|
-
{
|
|
1733
|
+
{
|
|
1734
|
+
text: "maximum players",
|
|
1735
|
+
type: ParameterType_1.ParameterType.integer,
|
|
1736
|
+
required: true,
|
|
1737
|
+
options: { minimum: 1 },
|
|
1738
|
+
},
|
|
1352
1739
|
],
|
|
1353
1740
|
},
|
|
1354
1741
|
],
|
|
@@ -1359,7 +1746,12 @@ exports.Vanilla = {
|
|
|
1359
1746
|
documentation: "Sets the spawnpoint of the given entities.",
|
|
1360
1747
|
parameters: [
|
|
1361
1748
|
{ text: "spawnpoint", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1362
|
-
{
|
|
1749
|
+
{
|
|
1750
|
+
text: "player",
|
|
1751
|
+
type: ParameterType_1.ParameterType.selector,
|
|
1752
|
+
required: false,
|
|
1753
|
+
options: { playerOnly: true },
|
|
1754
|
+
},
|
|
1363
1755
|
{ text: "spawn x", type: ParameterType_1.ParameterType.coordinate, required: false },
|
|
1364
1756
|
{ text: "spawn y", type: ParameterType_1.ParameterType.coordinate, required: false },
|
|
1365
1757
|
{ text: "spawn z", type: ParameterType_1.ParameterType.coordinate, required: false },
|
|
@@ -1388,7 +1780,12 @@ exports.Vanilla = {
|
|
|
1388
1780
|
documentation: "Stops all playing sounds on the given players.",
|
|
1389
1781
|
parameters: [
|
|
1390
1782
|
{ text: "stopsound", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1391
|
-
{
|
|
1783
|
+
{
|
|
1784
|
+
text: "player",
|
|
1785
|
+
type: ParameterType_1.ParameterType.selector,
|
|
1786
|
+
required: true,
|
|
1787
|
+
options: { playerOnly: true },
|
|
1788
|
+
},
|
|
1392
1789
|
{ text: "sound", type: ParameterType_1.ParameterType.sound, required: false },
|
|
1393
1790
|
],
|
|
1394
1791
|
},
|
|
@@ -1424,9 +1821,17 @@ exports.Vanilla = {
|
|
|
1424
1821
|
{ text: "to x", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
1425
1822
|
{ text: "to y", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
1426
1823
|
{ text: "to z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
1427
|
-
{
|
|
1824
|
+
{
|
|
1825
|
+
text: "include entities",
|
|
1826
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
1827
|
+
required: false,
|
|
1828
|
+
},
|
|
1428
1829
|
{ text: "save mode", type: ParameterType_1.ParameterType.saveMode, required: false },
|
|
1429
|
-
{
|
|
1830
|
+
{
|
|
1831
|
+
text: "include blocks",
|
|
1832
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
1833
|
+
required: false,
|
|
1834
|
+
},
|
|
1430
1835
|
],
|
|
1431
1836
|
},
|
|
1432
1837
|
{
|
|
@@ -1441,8 +1846,16 @@ exports.Vanilla = {
|
|
|
1441
1846
|
{ text: "to z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
1442
1847
|
{ text: "rotation", type: ParameterType_1.ParameterType.rotation, required: false },
|
|
1443
1848
|
{ text: "mirror", type: ParameterType_1.ParameterType.mirror, required: false },
|
|
1444
|
-
{
|
|
1445
|
-
|
|
1849
|
+
{
|
|
1850
|
+
text: "include entities",
|
|
1851
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
1852
|
+
required: false,
|
|
1853
|
+
},
|
|
1854
|
+
{
|
|
1855
|
+
text: "include blocks",
|
|
1856
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
1857
|
+
required: false,
|
|
1858
|
+
},
|
|
1446
1859
|
{ text: "integrity", type: ParameterType_1.ParameterType.float, required: false },
|
|
1447
1860
|
{ text: "seed", type: ParameterType_1.ParameterType.string, required: false },
|
|
1448
1861
|
],
|
|
@@ -1459,10 +1872,26 @@ exports.Vanilla = {
|
|
|
1459
1872
|
{ text: "to z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
1460
1873
|
{ text: "rotation", type: ParameterType_1.ParameterType.rotation, required: false },
|
|
1461
1874
|
{ text: "mirror", type: ParameterType_1.ParameterType.mirror, required: false },
|
|
1462
|
-
{
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1875
|
+
{
|
|
1876
|
+
text: "animation mode",
|
|
1877
|
+
type: ParameterType_1.ParameterType.structureAnimationMode,
|
|
1878
|
+
required: false,
|
|
1879
|
+
},
|
|
1880
|
+
{
|
|
1881
|
+
text: "animation seconds",
|
|
1882
|
+
type: ParameterType_1.ParameterType.float,
|
|
1883
|
+
required: false,
|
|
1884
|
+
},
|
|
1885
|
+
{
|
|
1886
|
+
text: "include entities",
|
|
1887
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
1888
|
+
required: false,
|
|
1889
|
+
},
|
|
1890
|
+
{
|
|
1891
|
+
text: "include blocks",
|
|
1892
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
1893
|
+
required: false,
|
|
1894
|
+
},
|
|
1466
1895
|
{ text: "integrity", type: ParameterType_1.ParameterType.float, required: false },
|
|
1467
1896
|
{ text: "seed", type: ParameterType_1.ParameterType.string, required: false },
|
|
1468
1897
|
],
|
|
@@ -1531,7 +1960,12 @@ exports.Vanilla = {
|
|
|
1531
1960
|
documentation: "Manages tags stored in entities.",
|
|
1532
1961
|
parameters: [
|
|
1533
1962
|
{ text: "tag", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1534
|
-
{
|
|
1963
|
+
{
|
|
1964
|
+
text: "selector",
|
|
1965
|
+
type: ParameterType_1.ParameterType.selector,
|
|
1966
|
+
required: true,
|
|
1967
|
+
options: { wildcard: true },
|
|
1968
|
+
},
|
|
1535
1969
|
{ text: "remove", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1536
1970
|
{ text: "name", type: ParameterType_1.ParameterType.tag, required: true },
|
|
1537
1971
|
],
|
|
@@ -1544,7 +1978,12 @@ exports.Vanilla = {
|
|
|
1544
1978
|
documentation: "Sends a private message to one or more players.",
|
|
1545
1979
|
parameters: [
|
|
1546
1980
|
{ text: "tell", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1547
|
-
{
|
|
1981
|
+
{
|
|
1982
|
+
text: "player",
|
|
1983
|
+
type: ParameterType_1.ParameterType.selector,
|
|
1984
|
+
required: true,
|
|
1985
|
+
options: { playerOnly: true },
|
|
1986
|
+
},
|
|
1548
1987
|
{ text: "message", type: ParameterType_1.ParameterType.message, required: true },
|
|
1549
1988
|
],
|
|
1550
1989
|
},
|
|
@@ -1556,8 +1995,17 @@ exports.Vanilla = {
|
|
|
1556
1995
|
documentation: "Sends a json messsage to players.",
|
|
1557
1996
|
parameters: [
|
|
1558
1997
|
{ text: "tellraw", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1559
|
-
{
|
|
1560
|
-
|
|
1998
|
+
{
|
|
1999
|
+
text: "player",
|
|
2000
|
+
type: ParameterType_1.ParameterType.selector,
|
|
2001
|
+
required: true,
|
|
2002
|
+
options: { playerOnly: true },
|
|
2003
|
+
},
|
|
2004
|
+
{
|
|
2005
|
+
text: "json raw text",
|
|
2006
|
+
type: ParameterType_1.ParameterType.jsonRawText,
|
|
2007
|
+
required: true,
|
|
2008
|
+
},
|
|
1561
2009
|
],
|
|
1562
2010
|
},
|
|
1563
2011
|
],
|
|
@@ -1597,9 +2045,21 @@ exports.Vanilla = {
|
|
|
1597
2045
|
{ text: "end x", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
1598
2046
|
{ text: "end y", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
1599
2047
|
{ text: "end z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
1600
|
-
{
|
|
1601
|
-
|
|
1602
|
-
|
|
2048
|
+
{
|
|
2049
|
+
text: "destination x",
|
|
2050
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2051
|
+
required: true,
|
|
2052
|
+
},
|
|
2053
|
+
{
|
|
2054
|
+
text: "destination y",
|
|
2055
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2056
|
+
required: true,
|
|
2057
|
+
},
|
|
2058
|
+
{
|
|
2059
|
+
text: "destination z",
|
|
2060
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2061
|
+
required: true,
|
|
2062
|
+
},
|
|
1603
2063
|
],
|
|
1604
2064
|
},
|
|
1605
2065
|
{
|
|
@@ -1613,9 +2073,21 @@ exports.Vanilla = {
|
|
|
1613
2073
|
{ text: "end x", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
1614
2074
|
{ text: "end y", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
1615
2075
|
{ text: "end z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
1616
|
-
{
|
|
1617
|
-
|
|
1618
|
-
|
|
2076
|
+
{
|
|
2077
|
+
text: "destination x",
|
|
2078
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2079
|
+
required: true,
|
|
2080
|
+
},
|
|
2081
|
+
{
|
|
2082
|
+
text: "destination y",
|
|
2083
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2084
|
+
required: true,
|
|
2085
|
+
},
|
|
2086
|
+
{
|
|
2087
|
+
text: "destination z",
|
|
2088
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2089
|
+
required: true,
|
|
2090
|
+
},
|
|
1619
2091
|
{ text: "all", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1620
2092
|
],
|
|
1621
2093
|
},
|
|
@@ -1630,9 +2102,21 @@ exports.Vanilla = {
|
|
|
1630
2102
|
{ text: "end x", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
1631
2103
|
{ text: "end y", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
1632
2104
|
{ text: "end z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
1633
|
-
{
|
|
1634
|
-
|
|
1635
|
-
|
|
2105
|
+
{
|
|
2106
|
+
text: "destination x",
|
|
2107
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2108
|
+
required: true,
|
|
2109
|
+
},
|
|
2110
|
+
{
|
|
2111
|
+
text: "destination y",
|
|
2112
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2113
|
+
required: true,
|
|
2114
|
+
},
|
|
2115
|
+
{
|
|
2116
|
+
text: "destination z",
|
|
2117
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2118
|
+
required: true,
|
|
2119
|
+
},
|
|
1636
2120
|
{ text: "masked", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1637
2121
|
],
|
|
1638
2122
|
},
|
|
@@ -1674,7 +2158,11 @@ exports.Vanilla = {
|
|
|
1674
2158
|
parameters: [
|
|
1675
2159
|
{ text: "tickingarea", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1676
2160
|
{ text: "list", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1677
|
-
{
|
|
2161
|
+
{
|
|
2162
|
+
text: "all-dimensions",
|
|
2163
|
+
type: ParameterType_1.ParameterType.keyword,
|
|
2164
|
+
required: false,
|
|
2165
|
+
},
|
|
1678
2166
|
],
|
|
1679
2167
|
},
|
|
1680
2168
|
{
|
|
@@ -1761,7 +2249,7 @@ exports.Vanilla = {
|
|
|
1761
2249
|
{ text: "set", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1762
2250
|
{ text: "amount", type: ParameterType_1.ParameterType.time, required: true },
|
|
1763
2251
|
],
|
|
1764
|
-
}
|
|
2252
|
+
},
|
|
1765
2253
|
],
|
|
1766
2254
|
/**The title command */
|
|
1767
2255
|
title: [
|
|
@@ -1770,7 +2258,12 @@ exports.Vanilla = {
|
|
|
1770
2258
|
documentation: "Sets the title.",
|
|
1771
2259
|
parameters: [
|
|
1772
2260
|
{ text: "title", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1773
|
-
{
|
|
2261
|
+
{
|
|
2262
|
+
text: "player",
|
|
2263
|
+
type: ParameterType_1.ParameterType.selector,
|
|
2264
|
+
required: true,
|
|
2265
|
+
options: { playerOnly: true },
|
|
2266
|
+
},
|
|
1774
2267
|
{ text: "title", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1775
2268
|
{ text: "titletext", type: ParameterType_1.ParameterType.message, required: true },
|
|
1776
2269
|
],
|
|
@@ -1780,7 +2273,12 @@ exports.Vanilla = {
|
|
|
1780
2273
|
documentation: "Sets the sub titles.",
|
|
1781
2274
|
parameters: [
|
|
1782
2275
|
{ text: "title", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1783
|
-
{
|
|
2276
|
+
{
|
|
2277
|
+
text: "player",
|
|
2278
|
+
type: ParameterType_1.ParameterType.selector,
|
|
2279
|
+
required: true,
|
|
2280
|
+
options: { playerOnly: true },
|
|
2281
|
+
},
|
|
1784
2282
|
{ text: "subtitle", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1785
2283
|
{ text: "titletext", type: ParameterType_1.ParameterType.message, required: true },
|
|
1786
2284
|
],
|
|
@@ -1790,7 +2288,12 @@ exports.Vanilla = {
|
|
|
1790
2288
|
documentation: "Sets the action bar.",
|
|
1791
2289
|
parameters: [
|
|
1792
2290
|
{ text: "title", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1793
|
-
{
|
|
2291
|
+
{
|
|
2292
|
+
text: "player",
|
|
2293
|
+
type: ParameterType_1.ParameterType.selector,
|
|
2294
|
+
required: true,
|
|
2295
|
+
options: { playerOnly: true },
|
|
2296
|
+
},
|
|
1794
2297
|
{ text: "actionbar", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1795
2298
|
{ text: "titletext", type: ParameterType_1.ParameterType.message, required: true },
|
|
1796
2299
|
],
|
|
@@ -1800,7 +2303,12 @@ exports.Vanilla = {
|
|
|
1800
2303
|
documentation: "Clears the title & subtitle from the given players",
|
|
1801
2304
|
parameters: [
|
|
1802
2305
|
{ text: "title", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1803
|
-
{
|
|
2306
|
+
{
|
|
2307
|
+
text: "player",
|
|
2308
|
+
type: ParameterType_1.ParameterType.selector,
|
|
2309
|
+
required: true,
|
|
2310
|
+
options: { playerOnly: true },
|
|
2311
|
+
},
|
|
1804
2312
|
{ text: "clear", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1805
2313
|
],
|
|
1806
2314
|
},
|
|
@@ -1809,7 +2317,12 @@ exports.Vanilla = {
|
|
|
1809
2317
|
documentation: "Clears the title & subtitle from the given players",
|
|
1810
2318
|
parameters: [
|
|
1811
2319
|
{ text: "title", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1812
|
-
{
|
|
2320
|
+
{
|
|
2321
|
+
text: "player",
|
|
2322
|
+
type: ParameterType_1.ParameterType.selector,
|
|
2323
|
+
required: true,
|
|
2324
|
+
options: { playerOnly: true },
|
|
2325
|
+
},
|
|
1813
2326
|
{ text: "reset", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1814
2327
|
],
|
|
1815
2328
|
},
|
|
@@ -1818,7 +2331,12 @@ exports.Vanilla = {
|
|
|
1818
2331
|
documentation: "Set the title timings.",
|
|
1819
2332
|
parameters: [
|
|
1820
2333
|
{ text: "title", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1821
|
-
{
|
|
2334
|
+
{
|
|
2335
|
+
text: "player",
|
|
2336
|
+
type: ParameterType_1.ParameterType.selector,
|
|
2337
|
+
required: true,
|
|
2338
|
+
options: { playerOnly: true },
|
|
2339
|
+
},
|
|
1822
2340
|
{ text: "times", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1823
2341
|
{ text: "fade in", type: ParameterType_1.ParameterType.integer, required: true },
|
|
1824
2342
|
{ text: "stay", type: ParameterType_1.ParameterType.integer, required: true },
|
|
@@ -1833,9 +2351,18 @@ exports.Vanilla = {
|
|
|
1833
2351
|
documentation: "Sets the title.",
|
|
1834
2352
|
parameters: [
|
|
1835
2353
|
{ text: "titleraw", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1836
|
-
{
|
|
2354
|
+
{
|
|
2355
|
+
text: "player",
|
|
2356
|
+
type: ParameterType_1.ParameterType.selector,
|
|
2357
|
+
required: true,
|
|
2358
|
+
options: { playerOnly: true },
|
|
2359
|
+
},
|
|
1837
2360
|
{ text: "title", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1838
|
-
{
|
|
2361
|
+
{
|
|
2362
|
+
text: "json raw text",
|
|
2363
|
+
type: ParameterType_1.ParameterType.jsonRawText,
|
|
2364
|
+
required: true,
|
|
2365
|
+
},
|
|
1839
2366
|
],
|
|
1840
2367
|
},
|
|
1841
2368
|
{
|
|
@@ -1843,9 +2370,18 @@ exports.Vanilla = {
|
|
|
1843
2370
|
documentation: "Sets the sub titles.",
|
|
1844
2371
|
parameters: [
|
|
1845
2372
|
{ text: "titleraw", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1846
|
-
{
|
|
2373
|
+
{
|
|
2374
|
+
text: "player",
|
|
2375
|
+
type: ParameterType_1.ParameterType.selector,
|
|
2376
|
+
required: true,
|
|
2377
|
+
options: { playerOnly: true },
|
|
2378
|
+
},
|
|
1847
2379
|
{ text: "subtitle", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1848
|
-
{
|
|
2380
|
+
{
|
|
2381
|
+
text: "json raw text",
|
|
2382
|
+
type: ParameterType_1.ParameterType.jsonRawText,
|
|
2383
|
+
required: true,
|
|
2384
|
+
},
|
|
1849
2385
|
],
|
|
1850
2386
|
},
|
|
1851
2387
|
{
|
|
@@ -1853,9 +2389,18 @@ exports.Vanilla = {
|
|
|
1853
2389
|
documentation: "Sets the action bar.",
|
|
1854
2390
|
parameters: [
|
|
1855
2391
|
{ text: "titleraw", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1856
|
-
{
|
|
2392
|
+
{
|
|
2393
|
+
text: "player",
|
|
2394
|
+
type: ParameterType_1.ParameterType.selector,
|
|
2395
|
+
required: true,
|
|
2396
|
+
options: { playerOnly: true },
|
|
2397
|
+
},
|
|
1857
2398
|
{ text: "actionbar", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1858
|
-
{
|
|
2399
|
+
{
|
|
2400
|
+
text: "json raw text",
|
|
2401
|
+
type: ParameterType_1.ParameterType.jsonRawText,
|
|
2402
|
+
required: true,
|
|
2403
|
+
},
|
|
1859
2404
|
],
|
|
1860
2405
|
},
|
|
1861
2406
|
{
|
|
@@ -1863,7 +2408,12 @@ exports.Vanilla = {
|
|
|
1863
2408
|
documentation: "Clears the title & subtitle from the given players",
|
|
1864
2409
|
parameters: [
|
|
1865
2410
|
{ text: "titleraw", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1866
|
-
{
|
|
2411
|
+
{
|
|
2412
|
+
text: "player",
|
|
2413
|
+
type: ParameterType_1.ParameterType.selector,
|
|
2414
|
+
required: true,
|
|
2415
|
+
options: { playerOnly: true },
|
|
2416
|
+
},
|
|
1867
2417
|
{ text: "clear", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1868
2418
|
],
|
|
1869
2419
|
},
|
|
@@ -1872,7 +2422,12 @@ exports.Vanilla = {
|
|
|
1872
2422
|
documentation: "Clears the title & subtitle from the given players",
|
|
1873
2423
|
parameters: [
|
|
1874
2424
|
{ text: "titleraw", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1875
|
-
{
|
|
2425
|
+
{
|
|
2426
|
+
text: "player",
|
|
2427
|
+
type: ParameterType_1.ParameterType.selector,
|
|
2428
|
+
required: true,
|
|
2429
|
+
options: { playerOnly: true },
|
|
2430
|
+
},
|
|
1876
2431
|
{ text: "reset", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1877
2432
|
],
|
|
1878
2433
|
},
|
|
@@ -1881,7 +2436,12 @@ exports.Vanilla = {
|
|
|
1881
2436
|
documentation: "Set the timings.",
|
|
1882
2437
|
parameters: [
|
|
1883
2438
|
{ text: "titleraw", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1884
|
-
{
|
|
2439
|
+
{
|
|
2440
|
+
text: "player",
|
|
2441
|
+
type: ParameterType_1.ParameterType.selector,
|
|
2442
|
+
required: true,
|
|
2443
|
+
options: { playerOnly: true },
|
|
2444
|
+
},
|
|
1885
2445
|
{ text: "times", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1886
2446
|
{ text: "fade in", type: ParameterType_1.ParameterType.integer, required: true },
|
|
1887
2447
|
{ text: "stay", type: ParameterType_1.ParameterType.integer, required: true },
|
|
@@ -1892,7 +2452,9 @@ exports.Vanilla = {
|
|
|
1892
2452
|
/**The toggledownfall command */
|
|
1893
2453
|
toggledownfall: [
|
|
1894
2454
|
{
|
|
1895
|
-
parameters: [
|
|
2455
|
+
parameters: [
|
|
2456
|
+
{ text: "toggledownfall", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
2457
|
+
],
|
|
1896
2458
|
name: "toggledownfall",
|
|
1897
2459
|
documentation: "Toggles the weather.",
|
|
1898
2460
|
},
|
|
@@ -1905,7 +2467,11 @@ exports.Vanilla = {
|
|
|
1905
2467
|
parameters: [
|
|
1906
2468
|
{ text: "tp", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1907
2469
|
{ text: "destination", type: ParameterType_1.ParameterType.selector, required: true },
|
|
1908
|
-
{
|
|
2470
|
+
{
|
|
2471
|
+
text: "check for blocks",
|
|
2472
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
2473
|
+
required: false,
|
|
2474
|
+
},
|
|
1909
2475
|
],
|
|
1910
2476
|
},
|
|
1911
2477
|
{
|
|
@@ -1913,10 +2479,26 @@ exports.Vanilla = {
|
|
|
1913
2479
|
documentation: "Teleport the executing entity to the location.",
|
|
1914
2480
|
parameters: [
|
|
1915
2481
|
{ text: "tp", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1916
|
-
{
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
2482
|
+
{
|
|
2483
|
+
text: "destination x",
|
|
2484
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2485
|
+
required: true,
|
|
2486
|
+
},
|
|
2487
|
+
{
|
|
2488
|
+
text: "destination y",
|
|
2489
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2490
|
+
required: true,
|
|
2491
|
+
},
|
|
2492
|
+
{
|
|
2493
|
+
text: "destination z",
|
|
2494
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2495
|
+
required: true,
|
|
2496
|
+
},
|
|
2497
|
+
{
|
|
2498
|
+
text: "check for blocks",
|
|
2499
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
2500
|
+
required: false,
|
|
2501
|
+
},
|
|
1920
2502
|
],
|
|
1921
2503
|
},
|
|
1922
2504
|
{
|
|
@@ -1926,7 +2508,11 @@ exports.Vanilla = {
|
|
|
1926
2508
|
{ text: "tp", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1927
2509
|
{ text: "victim", type: ParameterType_1.ParameterType.selector, required: true },
|
|
1928
2510
|
{ text: "destination", type: ParameterType_1.ParameterType.selector, required: true },
|
|
1929
|
-
{
|
|
2511
|
+
{
|
|
2512
|
+
text: "check for blocks",
|
|
2513
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
2514
|
+
required: false,
|
|
2515
|
+
},
|
|
1930
2516
|
],
|
|
1931
2517
|
},
|
|
1932
2518
|
{
|
|
@@ -1935,10 +2521,26 @@ exports.Vanilla = {
|
|
|
1935
2521
|
parameters: [
|
|
1936
2522
|
{ text: "tp", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1937
2523
|
{ text: "victim", type: ParameterType_1.ParameterType.selector, required: true },
|
|
1938
|
-
{
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
2524
|
+
{
|
|
2525
|
+
text: "destination x",
|
|
2526
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2527
|
+
required: true,
|
|
2528
|
+
},
|
|
2529
|
+
{
|
|
2530
|
+
text: "destination y",
|
|
2531
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2532
|
+
required: true,
|
|
2533
|
+
},
|
|
2534
|
+
{
|
|
2535
|
+
text: "destination z",
|
|
2536
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2537
|
+
required: true,
|
|
2538
|
+
},
|
|
2539
|
+
{
|
|
2540
|
+
text: "check for blocks",
|
|
2541
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
2542
|
+
required: false,
|
|
2543
|
+
},
|
|
1942
2544
|
],
|
|
1943
2545
|
},
|
|
1944
2546
|
{
|
|
@@ -1949,7 +2551,11 @@ exports.Vanilla = {
|
|
|
1949
2551
|
{ text: "destination", type: ParameterType_1.ParameterType.selector, required: true },
|
|
1950
2552
|
{ text: "yRot", type: ParameterType_1.ParameterType.coordinate, required: false },
|
|
1951
2553
|
{ text: "xRot", type: ParameterType_1.ParameterType.coordinate, required: false },
|
|
1952
|
-
{
|
|
2554
|
+
{
|
|
2555
|
+
text: "check for blocks",
|
|
2556
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
2557
|
+
required: false,
|
|
2558
|
+
},
|
|
1953
2559
|
],
|
|
1954
2560
|
},
|
|
1955
2561
|
{
|
|
@@ -1957,12 +2563,28 @@ exports.Vanilla = {
|
|
|
1957
2563
|
documentation: "Teleport the executing entity to the destination with rotation.",
|
|
1958
2564
|
parameters: [
|
|
1959
2565
|
{ text: "tp", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1960
|
-
{
|
|
1961
|
-
|
|
1962
|
-
|
|
2566
|
+
{
|
|
2567
|
+
text: "destination x",
|
|
2568
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2569
|
+
required: true,
|
|
2570
|
+
},
|
|
2571
|
+
{
|
|
2572
|
+
text: "destination y",
|
|
2573
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2574
|
+
required: true,
|
|
2575
|
+
},
|
|
2576
|
+
{
|
|
2577
|
+
text: "destination z",
|
|
2578
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2579
|
+
required: true,
|
|
2580
|
+
},
|
|
1963
2581
|
{ text: "yRot", type: ParameterType_1.ParameterType.coordinate, required: false },
|
|
1964
2582
|
{ text: "xRot", type: ParameterType_1.ParameterType.coordinate, required: false },
|
|
1965
|
-
{
|
|
2583
|
+
{
|
|
2584
|
+
text: "check for blocks",
|
|
2585
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
2586
|
+
required: false,
|
|
2587
|
+
},
|
|
1966
2588
|
],
|
|
1967
2589
|
},
|
|
1968
2590
|
{
|
|
@@ -1975,7 +2597,11 @@ exports.Vanilla = {
|
|
|
1975
2597
|
{ text: "facing", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1976
2598
|
{ text: "yRot", type: ParameterType_1.ParameterType.coordinate, required: false },
|
|
1977
2599
|
{ text: "xRot", type: ParameterType_1.ParameterType.coordinate, required: false },
|
|
1978
|
-
{
|
|
2600
|
+
{
|
|
2601
|
+
text: "check for blocks",
|
|
2602
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
2603
|
+
required: false,
|
|
2604
|
+
},
|
|
1979
2605
|
],
|
|
1980
2606
|
},
|
|
1981
2607
|
{
|
|
@@ -1984,12 +2610,28 @@ exports.Vanilla = {
|
|
|
1984
2610
|
parameters: [
|
|
1985
2611
|
{ text: "tp", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
1986
2612
|
{ text: "victim", type: ParameterType_1.ParameterType.selector, required: true },
|
|
1987
|
-
{
|
|
1988
|
-
|
|
1989
|
-
|
|
2613
|
+
{
|
|
2614
|
+
text: "destination x",
|
|
2615
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2616
|
+
required: true,
|
|
2617
|
+
},
|
|
2618
|
+
{
|
|
2619
|
+
text: "destination y",
|
|
2620
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2621
|
+
required: true,
|
|
2622
|
+
},
|
|
2623
|
+
{
|
|
2624
|
+
text: "destination z",
|
|
2625
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2626
|
+
required: true,
|
|
2627
|
+
},
|
|
1990
2628
|
{ text: "yRot", type: ParameterType_1.ParameterType.coordinate, required: false },
|
|
1991
2629
|
{ text: "xRot", type: ParameterType_1.ParameterType.coordinate, required: false },
|
|
1992
|
-
{
|
|
2630
|
+
{
|
|
2631
|
+
text: "check for blocks",
|
|
2632
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
2633
|
+
required: false,
|
|
2634
|
+
},
|
|
1993
2635
|
],
|
|
1994
2636
|
},
|
|
1995
2637
|
{
|
|
@@ -2000,7 +2642,11 @@ exports.Vanilla = {
|
|
|
2000
2642
|
{ text: "destination", type: ParameterType_1.ParameterType.selector, required: true },
|
|
2001
2643
|
{ text: "facing", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
2002
2644
|
{ text: "look at", type: ParameterType_1.ParameterType.selector, required: true },
|
|
2003
|
-
{
|
|
2645
|
+
{
|
|
2646
|
+
text: "check for blocks",
|
|
2647
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
2648
|
+
required: false,
|
|
2649
|
+
},
|
|
2004
2650
|
],
|
|
2005
2651
|
},
|
|
2006
2652
|
{
|
|
@@ -2013,7 +2659,11 @@ exports.Vanilla = {
|
|
|
2013
2659
|
{ text: "look at x", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
2014
2660
|
{ text: "look at y", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
2015
2661
|
{ text: "look at z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
2016
|
-
{
|
|
2662
|
+
{
|
|
2663
|
+
text: "check for blocks",
|
|
2664
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
2665
|
+
required: false,
|
|
2666
|
+
},
|
|
2017
2667
|
],
|
|
2018
2668
|
},
|
|
2019
2669
|
{
|
|
@@ -2025,7 +2675,11 @@ exports.Vanilla = {
|
|
|
2025
2675
|
{ text: "destination", type: ParameterType_1.ParameterType.selector, required: true },
|
|
2026
2676
|
{ text: "facing", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
2027
2677
|
{ text: "look at", type: ParameterType_1.ParameterType.selector, required: true },
|
|
2028
|
-
{
|
|
2678
|
+
{
|
|
2679
|
+
text: "check for blocks",
|
|
2680
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
2681
|
+
required: false,
|
|
2682
|
+
},
|
|
2029
2683
|
],
|
|
2030
2684
|
},
|
|
2031
2685
|
{
|
|
@@ -2039,7 +2693,11 @@ exports.Vanilla = {
|
|
|
2039
2693
|
{ text: "look at x", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
2040
2694
|
{ text: "look at y", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
2041
2695
|
{ text: "look at z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
2042
|
-
{
|
|
2696
|
+
{
|
|
2697
|
+
text: "check for blocks",
|
|
2698
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
2699
|
+
required: false,
|
|
2700
|
+
},
|
|
2043
2701
|
],
|
|
2044
2702
|
},
|
|
2045
2703
|
{
|
|
@@ -2047,12 +2705,28 @@ exports.Vanilla = {
|
|
|
2047
2705
|
documentation: "Teleport the executing entity to the destination with facing.",
|
|
2048
2706
|
parameters: [
|
|
2049
2707
|
{ text: "tp", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
2050
|
-
{
|
|
2051
|
-
|
|
2052
|
-
|
|
2708
|
+
{
|
|
2709
|
+
text: "destination x",
|
|
2710
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2711
|
+
required: true,
|
|
2712
|
+
},
|
|
2713
|
+
{
|
|
2714
|
+
text: "destination y",
|
|
2715
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2716
|
+
required: true,
|
|
2717
|
+
},
|
|
2718
|
+
{
|
|
2719
|
+
text: "destination z",
|
|
2720
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2721
|
+
required: true,
|
|
2722
|
+
},
|
|
2053
2723
|
{ text: "facing", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
2054
2724
|
{ text: "look at", type: ParameterType_1.ParameterType.selector, required: true },
|
|
2055
|
-
{
|
|
2725
|
+
{
|
|
2726
|
+
text: "check for blocks",
|
|
2727
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
2728
|
+
required: false,
|
|
2729
|
+
},
|
|
2056
2730
|
],
|
|
2057
2731
|
},
|
|
2058
2732
|
{
|
|
@@ -2060,14 +2734,30 @@ exports.Vanilla = {
|
|
|
2060
2734
|
documentation: "Teleport the entity to the destination with facing.",
|
|
2061
2735
|
parameters: [
|
|
2062
2736
|
{ text: "tp", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
2063
|
-
{
|
|
2064
|
-
|
|
2065
|
-
|
|
2737
|
+
{
|
|
2738
|
+
text: "destination x",
|
|
2739
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2740
|
+
required: true,
|
|
2741
|
+
},
|
|
2742
|
+
{
|
|
2743
|
+
text: "destination y",
|
|
2744
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2745
|
+
required: true,
|
|
2746
|
+
},
|
|
2747
|
+
{
|
|
2748
|
+
text: "destination z",
|
|
2749
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2750
|
+
required: true,
|
|
2751
|
+
},
|
|
2066
2752
|
{ text: "facing", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
2067
2753
|
{ text: "look at x", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
2068
2754
|
{ text: "look at y", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
2069
2755
|
{ text: "look at z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
2070
|
-
{
|
|
2756
|
+
{
|
|
2757
|
+
text: "check for blocks",
|
|
2758
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
2759
|
+
required: false,
|
|
2760
|
+
},
|
|
2071
2761
|
],
|
|
2072
2762
|
},
|
|
2073
2763
|
{
|
|
@@ -2076,12 +2766,28 @@ exports.Vanilla = {
|
|
|
2076
2766
|
parameters: [
|
|
2077
2767
|
{ text: "tp", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
2078
2768
|
{ text: "victim", type: ParameterType_1.ParameterType.selector, required: true },
|
|
2079
|
-
{
|
|
2080
|
-
|
|
2081
|
-
|
|
2769
|
+
{
|
|
2770
|
+
text: "destination x",
|
|
2771
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2772
|
+
required: true,
|
|
2773
|
+
},
|
|
2774
|
+
{
|
|
2775
|
+
text: "destination y",
|
|
2776
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2777
|
+
required: true,
|
|
2778
|
+
},
|
|
2779
|
+
{
|
|
2780
|
+
text: "destination z",
|
|
2781
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2782
|
+
required: true,
|
|
2783
|
+
},
|
|
2082
2784
|
{ text: "facing", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
2083
2785
|
{ text: "look at", type: ParameterType_1.ParameterType.selector, required: true },
|
|
2084
|
-
{
|
|
2786
|
+
{
|
|
2787
|
+
text: "check for blocks",
|
|
2788
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
2789
|
+
required: false,
|
|
2790
|
+
},
|
|
2085
2791
|
],
|
|
2086
2792
|
},
|
|
2087
2793
|
{
|
|
@@ -2090,14 +2796,30 @@ exports.Vanilla = {
|
|
|
2090
2796
|
parameters: [
|
|
2091
2797
|
{ text: "tp", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
2092
2798
|
{ text: "victim", type: ParameterType_1.ParameterType.selector, required: true },
|
|
2093
|
-
{
|
|
2094
|
-
|
|
2095
|
-
|
|
2799
|
+
{
|
|
2800
|
+
text: "destination x",
|
|
2801
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2802
|
+
required: true,
|
|
2803
|
+
},
|
|
2804
|
+
{
|
|
2805
|
+
text: "destination y",
|
|
2806
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2807
|
+
required: true,
|
|
2808
|
+
},
|
|
2809
|
+
{
|
|
2810
|
+
text: "destination z",
|
|
2811
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2812
|
+
required: true,
|
|
2813
|
+
},
|
|
2096
2814
|
{ text: "facing", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
2097
2815
|
{ text: "look at x", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
2098
2816
|
{ text: "look at y", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
2099
2817
|
{ text: "look at z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
2100
|
-
{
|
|
2818
|
+
{
|
|
2819
|
+
text: "check for blocks",
|
|
2820
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
2821
|
+
required: false,
|
|
2822
|
+
},
|
|
2101
2823
|
],
|
|
2102
2824
|
},
|
|
2103
2825
|
],
|
|
@@ -2109,7 +2831,11 @@ exports.Vanilla = {
|
|
|
2109
2831
|
parameters: [
|
|
2110
2832
|
{ text: "teleport", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
2111
2833
|
{ text: "destination", type: ParameterType_1.ParameterType.selector, required: true },
|
|
2112
|
-
{
|
|
2834
|
+
{
|
|
2835
|
+
text: "check for blocks",
|
|
2836
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
2837
|
+
required: false,
|
|
2838
|
+
},
|
|
2113
2839
|
],
|
|
2114
2840
|
},
|
|
2115
2841
|
{
|
|
@@ -2117,10 +2843,26 @@ exports.Vanilla = {
|
|
|
2117
2843
|
documentation: "Teleport Entities.",
|
|
2118
2844
|
parameters: [
|
|
2119
2845
|
{ text: "teleport", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
2120
|
-
{
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
|
|
2846
|
+
{
|
|
2847
|
+
text: "destination x",
|
|
2848
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2849
|
+
required: true,
|
|
2850
|
+
},
|
|
2851
|
+
{
|
|
2852
|
+
text: "destination y",
|
|
2853
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2854
|
+
required: true,
|
|
2855
|
+
},
|
|
2856
|
+
{
|
|
2857
|
+
text: "destination z",
|
|
2858
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2859
|
+
required: true,
|
|
2860
|
+
},
|
|
2861
|
+
{
|
|
2862
|
+
text: "check for blocks",
|
|
2863
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
2864
|
+
required: false,
|
|
2865
|
+
},
|
|
2124
2866
|
],
|
|
2125
2867
|
},
|
|
2126
2868
|
{
|
|
@@ -2130,7 +2872,11 @@ exports.Vanilla = {
|
|
|
2130
2872
|
{ text: "teleport", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
2131
2873
|
{ text: "victim", type: ParameterType_1.ParameterType.selector, required: true },
|
|
2132
2874
|
{ text: "destination", type: ParameterType_1.ParameterType.selector, required: true },
|
|
2133
|
-
{
|
|
2875
|
+
{
|
|
2876
|
+
text: "check for blocks",
|
|
2877
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
2878
|
+
required: false,
|
|
2879
|
+
},
|
|
2134
2880
|
],
|
|
2135
2881
|
},
|
|
2136
2882
|
{
|
|
@@ -2139,10 +2885,26 @@ exports.Vanilla = {
|
|
|
2139
2885
|
parameters: [
|
|
2140
2886
|
{ text: "teleport", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
2141
2887
|
{ text: "victim", type: ParameterType_1.ParameterType.selector, required: true },
|
|
2142
|
-
{
|
|
2143
|
-
|
|
2144
|
-
|
|
2145
|
-
|
|
2888
|
+
{
|
|
2889
|
+
text: "destination x",
|
|
2890
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2891
|
+
required: true,
|
|
2892
|
+
},
|
|
2893
|
+
{
|
|
2894
|
+
text: "destination y",
|
|
2895
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2896
|
+
required: true,
|
|
2897
|
+
},
|
|
2898
|
+
{
|
|
2899
|
+
text: "destination z",
|
|
2900
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2901
|
+
required: true,
|
|
2902
|
+
},
|
|
2903
|
+
{
|
|
2904
|
+
text: "check for blocks",
|
|
2905
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
2906
|
+
required: false,
|
|
2907
|
+
},
|
|
2146
2908
|
],
|
|
2147
2909
|
},
|
|
2148
2910
|
{
|
|
@@ -2153,7 +2915,11 @@ exports.Vanilla = {
|
|
|
2153
2915
|
{ text: "destination", type: ParameterType_1.ParameterType.selector, required: true },
|
|
2154
2916
|
{ text: "yRot", type: ParameterType_1.ParameterType.coordinate, required: false },
|
|
2155
2917
|
{ text: "xRot", type: ParameterType_1.ParameterType.coordinate, required: false },
|
|
2156
|
-
{
|
|
2918
|
+
{
|
|
2919
|
+
text: "check for blocks",
|
|
2920
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
2921
|
+
required: false,
|
|
2922
|
+
},
|
|
2157
2923
|
],
|
|
2158
2924
|
},
|
|
2159
2925
|
{
|
|
@@ -2161,12 +2927,28 @@ exports.Vanilla = {
|
|
|
2161
2927
|
documentation: "Teleport Entities.",
|
|
2162
2928
|
parameters: [
|
|
2163
2929
|
{ text: "teleport", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
2164
|
-
{
|
|
2165
|
-
|
|
2166
|
-
|
|
2930
|
+
{
|
|
2931
|
+
text: "destination x",
|
|
2932
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2933
|
+
required: true,
|
|
2934
|
+
},
|
|
2935
|
+
{
|
|
2936
|
+
text: "destination y",
|
|
2937
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2938
|
+
required: true,
|
|
2939
|
+
},
|
|
2940
|
+
{
|
|
2941
|
+
text: "destination z",
|
|
2942
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2943
|
+
required: true,
|
|
2944
|
+
},
|
|
2167
2945
|
{ text: "yRot", type: ParameterType_1.ParameterType.coordinate, required: false },
|
|
2168
2946
|
{ text: "xRot", type: ParameterType_1.ParameterType.coordinate, required: false },
|
|
2169
|
-
{
|
|
2947
|
+
{
|
|
2948
|
+
text: "check for blocks",
|
|
2949
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
2950
|
+
required: false,
|
|
2951
|
+
},
|
|
2170
2952
|
],
|
|
2171
2953
|
},
|
|
2172
2954
|
{
|
|
@@ -2179,7 +2961,11 @@ exports.Vanilla = {
|
|
|
2179
2961
|
{ text: "facing", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
2180
2962
|
{ text: "yRot", type: ParameterType_1.ParameterType.coordinate, required: false },
|
|
2181
2963
|
{ text: "xRot", type: ParameterType_1.ParameterType.coordinate, required: false },
|
|
2182
|
-
{
|
|
2964
|
+
{
|
|
2965
|
+
text: "check for blocks",
|
|
2966
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
2967
|
+
required: false,
|
|
2968
|
+
},
|
|
2183
2969
|
],
|
|
2184
2970
|
},
|
|
2185
2971
|
{
|
|
@@ -2188,12 +2974,28 @@ exports.Vanilla = {
|
|
|
2188
2974
|
parameters: [
|
|
2189
2975
|
{ text: "teleport", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
2190
2976
|
{ text: "victim", type: ParameterType_1.ParameterType.selector, required: true },
|
|
2191
|
-
{
|
|
2192
|
-
|
|
2193
|
-
|
|
2977
|
+
{
|
|
2978
|
+
text: "destination x",
|
|
2979
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2980
|
+
required: true,
|
|
2981
|
+
},
|
|
2982
|
+
{
|
|
2983
|
+
text: "destination y",
|
|
2984
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2985
|
+
required: true,
|
|
2986
|
+
},
|
|
2987
|
+
{
|
|
2988
|
+
text: "destination z",
|
|
2989
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
2990
|
+
required: true,
|
|
2991
|
+
},
|
|
2194
2992
|
{ text: "yRot", type: ParameterType_1.ParameterType.coordinate, required: false },
|
|
2195
2993
|
{ text: "xRot", type: ParameterType_1.ParameterType.coordinate, required: false },
|
|
2196
|
-
{
|
|
2994
|
+
{
|
|
2995
|
+
text: "check for blocks",
|
|
2996
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
2997
|
+
required: false,
|
|
2998
|
+
},
|
|
2197
2999
|
],
|
|
2198
3000
|
},
|
|
2199
3001
|
{
|
|
@@ -2204,7 +3006,11 @@ exports.Vanilla = {
|
|
|
2204
3006
|
{ text: "destination", type: ParameterType_1.ParameterType.selector, required: true },
|
|
2205
3007
|
{ text: "facing", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
2206
3008
|
{ text: "look at", type: ParameterType_1.ParameterType.selector, required: true },
|
|
2207
|
-
{
|
|
3009
|
+
{
|
|
3010
|
+
text: "check for blocks",
|
|
3011
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
3012
|
+
required: false,
|
|
3013
|
+
},
|
|
2208
3014
|
],
|
|
2209
3015
|
},
|
|
2210
3016
|
{
|
|
@@ -2217,7 +3023,11 @@ exports.Vanilla = {
|
|
|
2217
3023
|
{ text: "look at x", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
2218
3024
|
{ text: "look at y", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
2219
3025
|
{ text: "look at z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
2220
|
-
{
|
|
3026
|
+
{
|
|
3027
|
+
text: "check for blocks",
|
|
3028
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
3029
|
+
required: false,
|
|
3030
|
+
},
|
|
2221
3031
|
],
|
|
2222
3032
|
},
|
|
2223
3033
|
{
|
|
@@ -2229,7 +3039,11 @@ exports.Vanilla = {
|
|
|
2229
3039
|
{ text: "destination", type: ParameterType_1.ParameterType.selector, required: true },
|
|
2230
3040
|
{ text: "facing", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
2231
3041
|
{ text: "look at", type: ParameterType_1.ParameterType.selector, required: true },
|
|
2232
|
-
{
|
|
3042
|
+
{
|
|
3043
|
+
text: "check for blocks",
|
|
3044
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
3045
|
+
required: false,
|
|
3046
|
+
},
|
|
2233
3047
|
],
|
|
2234
3048
|
},
|
|
2235
3049
|
{
|
|
@@ -2243,7 +3057,11 @@ exports.Vanilla = {
|
|
|
2243
3057
|
{ text: "look at x", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
2244
3058
|
{ text: "look at y", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
2245
3059
|
{ text: "look at z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
2246
|
-
{
|
|
3060
|
+
{
|
|
3061
|
+
text: "check for blocks",
|
|
3062
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
3063
|
+
required: false,
|
|
3064
|
+
},
|
|
2247
3065
|
],
|
|
2248
3066
|
},
|
|
2249
3067
|
{
|
|
@@ -2251,12 +3069,28 @@ exports.Vanilla = {
|
|
|
2251
3069
|
documentation: "Teleport Entities.",
|
|
2252
3070
|
parameters: [
|
|
2253
3071
|
{ text: "teleport", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
2254
|
-
{
|
|
2255
|
-
|
|
2256
|
-
|
|
3072
|
+
{
|
|
3073
|
+
text: "destination x",
|
|
3074
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
3075
|
+
required: true,
|
|
3076
|
+
},
|
|
3077
|
+
{
|
|
3078
|
+
text: "destination y",
|
|
3079
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
3080
|
+
required: true,
|
|
3081
|
+
},
|
|
3082
|
+
{
|
|
3083
|
+
text: "destination z",
|
|
3084
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
3085
|
+
required: true,
|
|
3086
|
+
},
|
|
2257
3087
|
{ text: "facing", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
2258
3088
|
{ text: "look at", type: ParameterType_1.ParameterType.selector, required: true },
|
|
2259
|
-
{
|
|
3089
|
+
{
|
|
3090
|
+
text: "check for blocks",
|
|
3091
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
3092
|
+
required: false,
|
|
3093
|
+
},
|
|
2260
3094
|
],
|
|
2261
3095
|
},
|
|
2262
3096
|
{
|
|
@@ -2264,14 +3098,30 @@ exports.Vanilla = {
|
|
|
2264
3098
|
documentation: "Teleport Entities.",
|
|
2265
3099
|
parameters: [
|
|
2266
3100
|
{ text: "teleport", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
2267
|
-
{
|
|
2268
|
-
|
|
2269
|
-
|
|
3101
|
+
{
|
|
3102
|
+
text: "destination x",
|
|
3103
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
3104
|
+
required: true,
|
|
3105
|
+
},
|
|
3106
|
+
{
|
|
3107
|
+
text: "destination y",
|
|
3108
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
3109
|
+
required: true,
|
|
3110
|
+
},
|
|
3111
|
+
{
|
|
3112
|
+
text: "destination z",
|
|
3113
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
3114
|
+
required: true,
|
|
3115
|
+
},
|
|
2270
3116
|
{ text: "facing", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
2271
3117
|
{ text: "look at x", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
2272
3118
|
{ text: "look at y", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
2273
3119
|
{ text: "look at z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
2274
|
-
{
|
|
3120
|
+
{
|
|
3121
|
+
text: "check for blocks",
|
|
3122
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
3123
|
+
required: false,
|
|
3124
|
+
},
|
|
2275
3125
|
],
|
|
2276
3126
|
},
|
|
2277
3127
|
{
|
|
@@ -2280,12 +3130,28 @@ exports.Vanilla = {
|
|
|
2280
3130
|
parameters: [
|
|
2281
3131
|
{ text: "teleport", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
2282
3132
|
{ text: "victim", type: ParameterType_1.ParameterType.selector, required: true },
|
|
2283
|
-
{
|
|
2284
|
-
|
|
2285
|
-
|
|
3133
|
+
{
|
|
3134
|
+
text: "destination x",
|
|
3135
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
3136
|
+
required: true,
|
|
3137
|
+
},
|
|
3138
|
+
{
|
|
3139
|
+
text: "destination y",
|
|
3140
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
3141
|
+
required: true,
|
|
3142
|
+
},
|
|
3143
|
+
{
|
|
3144
|
+
text: "destination z",
|
|
3145
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
3146
|
+
required: true,
|
|
3147
|
+
},
|
|
2286
3148
|
{ text: "facing", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
2287
3149
|
{ text: "look at", type: ParameterType_1.ParameterType.selector, required: true },
|
|
2288
|
-
{
|
|
3150
|
+
{
|
|
3151
|
+
text: "check for blocks",
|
|
3152
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
3153
|
+
required: false,
|
|
3154
|
+
},
|
|
2289
3155
|
],
|
|
2290
3156
|
},
|
|
2291
3157
|
{
|
|
@@ -2294,14 +3160,30 @@ exports.Vanilla = {
|
|
|
2294
3160
|
parameters: [
|
|
2295
3161
|
{ text: "teleport", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
2296
3162
|
{ text: "victim", type: ParameterType_1.ParameterType.selector, required: true },
|
|
2297
|
-
{
|
|
2298
|
-
|
|
2299
|
-
|
|
3163
|
+
{
|
|
3164
|
+
text: "destination x",
|
|
3165
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
3166
|
+
required: true,
|
|
3167
|
+
},
|
|
3168
|
+
{
|
|
3169
|
+
text: "destination y",
|
|
3170
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
3171
|
+
required: true,
|
|
3172
|
+
},
|
|
3173
|
+
{
|
|
3174
|
+
text: "destination z",
|
|
3175
|
+
type: ParameterType_1.ParameterType.coordinate,
|
|
3176
|
+
required: true,
|
|
3177
|
+
},
|
|
2300
3178
|
{ text: "facing", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
2301
3179
|
{ text: "look at x", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
2302
3180
|
{ text: "look at y", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
2303
3181
|
{ text: "look at z", type: ParameterType_1.ParameterType.coordinate, required: true },
|
|
2304
|
-
{
|
|
3182
|
+
{
|
|
3183
|
+
text: "check for blocks",
|
|
3184
|
+
type: ParameterType_1.ParameterType.boolean,
|
|
3185
|
+
required: false,
|
|
3186
|
+
},
|
|
2305
3187
|
],
|
|
2306
3188
|
},
|
|
2307
3189
|
],
|
|
@@ -2355,7 +3237,12 @@ exports.Vanilla = {
|
|
|
2355
3237
|
parameters: [
|
|
2356
3238
|
{ text: "xp", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
2357
3239
|
{ text: "amount", type: ParameterType_1.ParameterType.xp, required: true },
|
|
2358
|
-
{
|
|
3240
|
+
{
|
|
3241
|
+
text: "player",
|
|
3242
|
+
type: ParameterType_1.ParameterType.selector,
|
|
3243
|
+
required: false,
|
|
3244
|
+
options: { playerOnly: true },
|
|
3245
|
+
},
|
|
2359
3246
|
],
|
|
2360
3247
|
},
|
|
2361
3248
|
{
|
|
@@ -2364,7 +3251,12 @@ exports.Vanilla = {
|
|
|
2364
3251
|
parameters: [
|
|
2365
3252
|
{ text: "xp", type: ParameterType_1.ParameterType.keyword, required: true },
|
|
2366
3253
|
{ text: "amount", type: ParameterType_1.ParameterType.integer, required: true },
|
|
2367
|
-
{
|
|
3254
|
+
{
|
|
3255
|
+
text: "player",
|
|
3256
|
+
type: ParameterType_1.ParameterType.selector,
|
|
3257
|
+
required: false,
|
|
3258
|
+
options: { playerOnly: true },
|
|
3259
|
+
},
|
|
2368
3260
|
],
|
|
2369
3261
|
},
|
|
2370
3262
|
],
|