blob: a360809d65e6f2c6871c4dd157925afb9a0f84fc (
plain)
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
|
name: Sandbox
website: https://mc.cflems.net
author: cflems
version: 0.2.0
description: Make your Minecraft server into your personal sandbox.
main: net.cflems.mc.sandbox.Sandbox
load: POSTWORLD
api-version: '1.21.7'
depend: [ ]
commands:
enchant:
usage: /enchant <enchantment> [level] [player]
description: Enchants the item in your main hand.
fly:
usage: /fly [player]
description: Toggles your ability to fly.
repair:
usage: /repair [player]
description: Repairs the item in your main hand.
fireball:
usage: /fireball [power]
description: Shoots a fireball, optionally with the desired power.
lightning:
usage: /lightning [player]
description: Shoots a lightning bolt, optionally smiting to specified player.
powertool:
aliases: [ "pt" ]
usage: /powertool [command...]
description: Binds a command to the item in your main hand, or clears bound commands if none specified.
ptsu:
usage: /ptsu <player|console> [command...]
description: Executes the powertool command as the specified player.
permissions:
sandbox.*:
default: op
description: Permission to do anything with this plugin.
children:
sandbox.enchant: true
sandbox.enchant.others: true
sandbox.repair: true
sandbox.repair.others: true
sandbox.fly: true
sandbox.fly.others: true
sandbox.fireball: true
sandbox.fireball.custom: true
sandbox.powertool: true
sandbox.powertool.use: true
sandbox.powertool.reload: true
sandbox.powertool.su: true
sandbox.enchant:
description: Permission to enchant your items.
sandbox.enchant.others:
description: Permission to enchant other people's items.
sandbox.fly:
description: Permission to toggle flight.
sandbox.fly.others:
description: Permission to toggle other people's flight.
sandbox.repair:
description: Permission to repair your items.
sandbox.repair.others:
description: Permission to repair other people's items.
sandbox.fireball:
description: Permission to use fireballs.
sandbox.fireball.custom:
description: Permission to use fireballs with custom power.
sandbox.lightning:
description: Permission to use lightning.
sandbox.lightning.player:
description: Permission to use lightning to smite players.
sandbox.powertool:
description: Permission to modify power tools.
sandbox.powertool.use:
default: true
description: Permission to use power tools.
sandbox.powertool.reload:
description: Permission to reload power tool bindings from disk.
sandbox.powertool.su:
description: Permission to use power tools as others.
|