forked from DevotedMC/random-spawn
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathplugin.yml
More file actions
129 lines (129 loc) · 4.52 KB
/
plugin.yml
File metadata and controls
129 lines (129 loc) · 4.52 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
name: ${project.name}
version: ${project.version}
main: me.josvth.randomspawn.RandomSpawn
author: Josvth
softdepend: [WorldBorder, Bastion]
api-version: 1.17
commands:
randomspawn:
description: The main command.
usage: Command not found! Try /rs help
aliases: rs
rs help:
description: Shows a list with all the commands.
usage: /rs help [1/2/3]
permission: RandomSpawn.help
rs reload:
description: Reloads the Random Spawn config files.
usage: /rs reload [config/worlds/spawnlocations]
permission: RandomSpawn.reload
rs info:
description: Shows the Random Spawn settings for this world.
usage: /rs info
permission: RandomSpawn.info
rs enable:
description: Enables Random Spawn in this world.
usage: /rs enable
permission: RandomSpawn.configure
rs disable:
description: Disables Random Spawn in this world.
usage: /rs disable
permission: RandomSpawn.configure
rs setarea:
description: Sets the Random Spawn area.
usage: /rs setarea [square/circle] <radius> or /rs setarea <xrange> <zrange> or /rs setarea <xmin> <xmax> <zmin> <zmax>
permission: RandomSpawn.configure
rs usebeds:
description: Toggles using beds.
usage: /rs usebeds [true/false]
permission: RandomSpawn.configure
rs keepfirstspawns:
description: Toggles spawn saving.
usage: /rs keepfirstspawns [true/false]
aliases: kfs
permission: RandomSpawn.configure
rs firstjoin:
description: Toggles randomspawning on first join.
usage: /rs firstjoin [true/false]
aliases: fj
permission: RandomSpawn.configure
rs setfirstspawn:
description: Sets the first spawn location for this world.
usage: /rs setfirstspawn
aliases: sfs
permission: RandomSpawn.setfirstspawn
rs tpfirstspawn:
description: Teleports you to the first spawn location of this world.
usage: /rs tpfirstspawn
aliases: tfs
permission: RandomSpawn.tpfirstspawn
rs unsetfirstspawn:
description: Unsets the first spawn location for this world.
usage: /rs unsetfirstspawn
aliases: unsfs
permission: RandomSpawn.setfirstspawn
rs spawn:
description: Random spawns a player.
usage: /rs spawn <playername> <world> or /rs spawn
permission: RandomSpawn.spawncommand
rs addspawn:
description: |
Adds a new spawn point.
Location is set to the location of the player issuing the command.
For console users to add a new spawn point, add it in the config and reload.
usage: |
/rs addspawn <radius> <exclusion> true/false <check radius> name
radius - radius around that position to spawn players randomly
exclusion - but never within this radius ( 0 to disable )
true/false - use 'true' if a player must be online to use this spawnpoint, 'false' to not care.
check radius - radius to check for nearby players if prior set to true. Required, but ignored if prior is false.
name - name of the spawn point
permission: RandomSpawn.configure
aliases: rsas
rs removespawn:
description: Removes an existing spawn point.
usage: /rs removespawn world name
permission: RandomSpawn.configure
aliases: rsrs
permissions:
RandomSpawn.*:
description: Gives access to all Random Spawn commands.
default: op
children:
RandomSpawn.configure: true
RandomSpawn.help: true
RandomSpawn.info: true
RandomSpawn.placesign: true
RandomSpawn.reload:
description: Allows you to use the /rs reload command.
default: op
RandomSpawn.configure:
description: Allows you to configure Random Spawn.
default: op
children:
RandomSpawn.setfirstspawn: true
RandomSpawn.teleporttofirstspawn: true
RandomSpawn.help:
description: Gives you access to the help commands.
default: false
RandomSpawn.info:
description: Gives you access to the world info screen.
default: true
RandomSpawn.setfirstspawn:
description: Allows you to use the /setfirstspawn command.
default: op
RandomSpawn.teleporttofirstspawn:
description: Allows you to use the /tpfirstspawn command.
default: op
RandomSpawn.exclude:
description: Excludes you from being randomly spawned.
default: false
RandomSpawn.placesign:
description: Allows you to place Random Spawn Signs.
default: op
RandomSpawn.usesign:
description: Allows you to use Random Spawn Signs.
default: true
RandomSpawn.spawncommand:
description: allows you to use the spawn command.
default: op