forked from cuberite/WorldEdit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInfo.lua
More file actions
executable file
·468 lines (463 loc) · 11.5 KB
/
Info.lua
File metadata and controls
executable file
·468 lines (463 loc) · 11.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
-- Info.lua
-- Implements the g_PluginInfo standard plugin description
g_PluginInfo =
{
Name = "Edits",
Version = 4,
DisplayVersion = "1.3",
Date = "2022-04-18", -- yyyy-mm-dd
SourceLocation = "https://github.com/aedifi/edits",
Description = [[Efficient large-scale block edits.]],
Commands =
{
["//addleaves"] =
{
Permission = "edits.region.addleaves",
Handler = HandleAddLeavesCommand,
HelpString = "Adds leaves to log blocks.",
},
["//brush"] =
{
Permission = "edits.brush",
Handler = HandleBrushMainCommand,
HelpString = "Brushes shapes onto a target.",
Subcommands =
{
sphere =
{
HelpString = "Brushes spheres onto a target.",
Permission = "edits.brush.sphere",
Handler = HandleSphereBrush,
},
cylinder =
{
HelpString = "Brushes cylinders onto a target.",
Permission = "edits.brush.cylinder",
Handler = HandleCylinderBrush,
},
},
},
["//chunk"] =
{
Permission = "edits.selection.chunk",
Handler = HandleChunkCommand,
HelpString = "Selects the chunk you're in.",
},
["//count"] =
{
Permission = "edits.selection.count",
Handler = HandleCountCommand,
HelpString = "Counts the amount of blocks in a region.",
},
["//contract"] =
{
Permission = "edits.selection.contract",
Handler = HandleExpandContractCommand,
HelpString = "Contracts the region.",
},
["//copy"] =
{
Permission = "edits.clipboard.copy",
Handler = HandleCopyCommand,
HelpString = "Copies the region to your clipboard.",
},
["//cut"] =
{
Permission = "edits.clipboard.cut",
Handler = HandleCutCommand,
HelpString = "Cuts the selection to your clipboard.",
},
["//cylinder"] =
{
Permission = "edits.generation.cylinder",
Handler = HandleCylinderCommand,
HelpString = "Generates a cylinder.",
},
["//deselect"] =
{
Alias = "//desel",
Permission = "edits.selection.deselect",
Handler = HandleDeselectCommand,
HelpString = "Deselects the current region.",
},
["//distr"] =
{
Permission = "edits.selection.distr",
Handler = HandleDistrCommand,
HelpString = "Inspects your region's block distribution.",
},
["//drain"] =
{
Permission = "edits.drain",
Handler = HandleDrainCommand,
HelpString = "Drains all the water around you by a radius.",
},
["//ellipsoid"] =
{
Permission = "edits.region.ellipsoid",
Handler = HandleEllipsoidCommand,
HelpString = "Generates an ellipsoid at your region.",
},
["//expand"] =
{
Permission = "edits.selection.expand",
Handler = HandleExpandContractCommand,
HelpString = "Expands the region.",
},
["//extinguish"] =
{
Permission = "edits.extinguish",
Handler = HandleExtinguishCommand,
HelpString = "Extinguishes fire around you by a radius.",
},
["//faces"] =
{
Alias = "//outline",
Permission = "edits.region.faces",
Handler = HandleFacesCommand,
HelpString = "Builds the wall faces of a region.",
},
["//fillr"] =
{
Permission = "edits.fill.recursive",
Handler = HandleFillrCommand,
HelpString = "Recursively fills a hole.",
},
["//fill"] =
{
Permission = "edits.fill",
Handler = HandleFillCommand,
HelpString = "Fills a hole.",
},
["//generate"] =
{
Alias = "//gen",
Permission = "edits.generation.shape",
Handler = HandleGenerationShapeCommand,
HelpString = "Generates a formulaic shape.",
},
["//green"] =
{
Permission = "edits.green",
Handler = HandleGreenCommand,
HelpString = "Greens any nearby dirt with grass.",
},
["//getbiome"] =
{
Permission = "edits.biome.info",
Handler = HandleReadBiomeCommand,
HelpString = "Gets the biome makeup of a region.",
},
["//hcylinder"] =
{
Permission = "edits.selection.cylinder",
Handler = HandleCylinderCommand,
HelpString = "Generates a hollow cylinder.",
},
["//hpos1"] =
{
Permission = "edits.selection.pos",
Handler = HandleHPosCommand,
HelpString = "Sets the first position at your crosshair.",
},
["//hpos2"] =
{
Permission = "edits.selection.pos",
Handler = HandleHPosCommand,
HelpString = "Sets the second position at your crosshair.",
},
["//hpyramid"] =
{
Permission = "edits.generation.pyramid",
Handler = HandlePyramidCommand,
HelpString = "Generates a hollow pyramid.",
},
["//hsphere"] =
{
Permission = "edits.generation.hsphere",
Handler = HandleSphereCommand,
HelpString = "Generates a hollow sphere.",
},
["//leafdecay"] =
{
Permission = "edits.region.leafdecay",
Handler = HandleLeafDecayCommand,
HelpString = "Withers away leaves in a region.",
},
["//loadsel"] =
{
Permission = "edits.selection.loadselection",
Handler = HandleSaveLoadSelectionCommand,
HelpString = "Loads a selection that has been saved.",
},
["//mask"] =
{
Permission = "edits.brush.options.mask",
Handler = HandleMaskCommand,
HelpString = "Sets a restrictive brush mask.",
},
["//mirror"] =
{
Permission = "edits.region.mirror",
Handler = HandleMirrorCommand,
HelpString = "Mirrors a region on a specified plane.",
},
["//paste"] =
{
Permission = "edits.clipboard.paste",
Handler = HandlePasteCommand,
HelpString = "Pastes the contents of your clipboard.",
},
["//pickaxe"] =
{
Permission = "edits.superpickaxe",
Handler = HandlePickaxeCommand,
HelpString = "Toggles the super pickaxe.",
},
["//pos1"] =
{
Permission = "edits.selection.pos",
Handler = HandlePosCommand,
HelpString = "Sets the first position at your location.",
},
["//pos2"] =
{
Permission = "edits.selection.pos",
Handler = HandlePosCommand,
HelpString = "Sets the second position at your location.",
},
["//pumpkins"] =
{
Permission = "edits.generation.pumpkins",
Handler = HandlePumpkinsCommand,
HelpString = "Adds pumpkins to the surface.",
},
["//pyramid"] =
{
Permission = "edits.generation.pyramid",
Handler = HandlePyramidCommand,
HelpString = "Generates a solid pyramid.",
},
["//redo"] =
{
Permission = "edits.history.redo",
Handler = HandleRedoCommand,
HelpString = "Redoes the last undone action.",
},
["//replace"] =
{
Permission = "edits.region.replace",
Handler = HandleReplaceCommand,
HelpString = "Replaces the blocks in a region.",
},
["//replacenear"] =
{
Permission = "edits.region.replacenear",
Handler = HandleReplaceNearCommand,
HelpString = "Replaces the blocks around you by a radius.",
},
["//rotate"] =
{
Permission = "edits.clipboard.rotate",
Handler = HandleRotateCommand,
HelpString = "Rotates the contents of your clipboard.",
},
["//savesel"] =
{
Permission = "edits.selection.saveselection",
Handler = HandleSaveLoadSelectionCommand,
HelpString = "Saves the current selection.",
},
["//schem"] =
{
Permission = "edits.schematic",
Handler = HandleSchematicMainCommand,
HelpString = "Saves selections between schematic and clipboard.",
Subcommands =
{
download =
{
HelpString = "Creates a link to download your schematic.",
Permission = "edits.schematic.download",
Handler = HandleSchematicDownloadCommand,
},
import =
{
HelpString = "Imports a schematic to the server.",
Permission = "edits.schematic.import",
Handler = HandleSchematicImportCommand,
},
load =
{
HelpString = "Loads a schematic to your clipboard.",
Permission = "edits.schematic.load",
Handler = HandleSchematicLoadCommand,
},
save =
{
HelpString = "Saves your clipboard as a schematic.",
Permission = "edits.schematic.save",
Handler = HandleSchematicSaveCommand,
},
},
},
["//set"] =
{
Permission = "edits.region.set",
Handler = HandleSetCommand,
HelpString = "Sets the blocks in a region.",
},
["//setbiome"] =
{
Permission = "edits.biome.set",
Handler = HandleSetBiomeCommand,
HelpString = "Sets the biome of a region.",
},
["//shift"] =
{
Permission = "edits.selection.size",
Handler = HandleShiftCommand,
HelpString = "Moves the area of a region.",
},
["//shrink"] =
{
Permission = "edits.selection.shrink",
Handler = HandleShrinkCommand,
HelpString = "Shrinks a region to exclude air-only layers.",
},
["//size"] =
{
Permission = "edits.selection.size",
Handler = HandleSizeCommand,
HelpString = "Gets the size of a region.",
},
["//snow"] =
{
Permission = "edits.snow",
Handler = HandleSnowCommand,
HelpString = "Places snow on blocks which can frost.",
},
["//sphere"] =
{
Permission = "edits.generation.sphere",
Handler = HandleSphereCommand,
HelpString = "Generates a solid sphere.",
},
["//stack"] =
{
Permission = "edits.region.stack",
Handler = HandleStackCommand,
HelpString = "Duplicates a region directionally.",
},
["//thaw"] =
{
Permission = "edits.thaw",
Handler = HandleThawCommand,
HelpString = "Thaws the snow around you by a radius.",
},
["//undo"] =
{
Permission = "edits.history.undo",
Handler = HandleUndoCommand,
HelpString = "Undoes the last action.",
},
["//unbind"] =
{
Permission = "edits.unbind",
Handler = HandleUnbindCommand,
HelpString = "Strips your selected item of any bindings.",
},
["//up"] =
{
Permission = "edits.navigation.up",
Handler = HandleUpCommand,
HelpString = "Takes you upward by a distance.",
},
["//vmirror"] =
{
Permission = "edits.region.vmirror",
Handler = HandleVMirrorCommand,
HelpString = "Mirrors a region vertically.",
},
["//walls"] =
{
Permission = "edits.region.walls",
Handler = HandleWallsCommand,
HelpString = "Builds the four walls of a region.",
},
["//wand"] =
{
Permission = "edits.wand",
Handler = HandleWandCommand,
HelpString = "Gets the wand for you.",
},
["//wandwork"] =
{
Permission = "edits.wand.toggle",
Handler = HandleToggleEditWandCommand,
HelpString = "Changes if the edit wand works.",
},
-- Commands that aren't double-slashed.
["/ascend"] =
{
Permission = "edits.navigation.ascend",
Handler = HandleAscendCommand,
HelpString = "Ascends you upward.",
},
["/biomes"] =
{
Permission = "edits.biomes",
Handler = HandleListBiomeCommand,
HelpString = "Lists configured biomes.",
},
["/cui"] =
{
Permission = "edits.cui",
Handler = HandleCuiCommand,
HelpString = "Completes the visualizer handshake.",
},
["/descend"] =
{
Permission = "edits.navigation.descend",
Handler = HandleDescendCommand,
HelpString = "Descends you downward.",
},
["/formats"] =
{
Permission = "edits.schematic.list",
Handler = HandleSchematicFormatsCommand,
HelpString = "Lists supported schematic formats.",
},
["/run"] =
{
Permission = "edits.scripting.run",
Handler = HandleCraftScriptCommand,
HelpString = "Executes a craftscript.",
},
["/schematics"] =
{
Permission = "edits.schematic.list",
Handler = HandleSchematicListCommand,
HelpString = "Lists operable schematics.",
},
["/thru"] =
{
Permission = "edits.navigation.thru",
Handler = HandleThruCommand,
HelpString = "Takes you through walls and levels.",
},
}, -- Commands
AdditionalInfo =
{
{
Header = "API",
Contents = [[
]],
},
{
Header = "Config",
Contents = [[
]],
}
}, -- AdditionalInfo
} -- g_PluginInfo