Archived
0

Added more help clauses to teleport commands

This commit is contained in:
Minenash
2019-01-05 01:05:55 -05:00
parent 5d6e5d4264
commit 1f0ea14a52

View File

@@ -4,21 +4,25 @@ command tp {
[string:player] { [string:player] {
run tp player; run tp player;
help Teleports you to a player.;
perm utils.teleport.tpa; perm utils.teleport.tpa;
type player; type player;
} }
[string:player] [string:player2] { [string:player] [string:player2] {
run tp2 player player2; run tp2 player player2;
help Teleports the first player to the second.;
perm utils.teleport.tpa; perm utils.teleport.tpa;
} }
[int:x] [int:y] [int:z] { [int:x] [int:y] [int:z] {
run tploc x y z; run tploc x y z;
help Teleports you to specific coords.;
perm utils.teleport.tploc; perm utils.teleport.tploc;
type player; type player;
} }
[string:player] [int:x] [int:y] [int:z] { [string:player] [int:x] [int:y] [int:z] {
run tploc2 player x y z; run tploc2 player x y z;
help Teleports a player to specific coords.;
perm utils.teleport.tploc.other; perm utils.teleport.tploc.other;
} }
} }
@@ -31,6 +35,7 @@ command tphere {
[string:player] { [string:player] {
run tphere player; run tphere player;
help Teleports the player to you.;
perm utils.teleport.tp.here; perm utils.teleport.tp.here;
} }
} }
@@ -44,6 +49,7 @@ command tpa {
[string:player] { [string:player] {
run tpa player; run tpa player;
help Request to teleport to a player.;
} }
} }
@@ -57,6 +63,7 @@ command tpahere {
[string:player] { [string:player] {
run tpahere player; run tpahere player;
help Request a player to teleport to you,;
help ask another player to teleport to you.; help ask another player to teleport to you.;
} }
} }
@@ -112,9 +119,11 @@ command tpdeny {
[empty] { [empty] {
run tpdeny; run tpdeny;
help Denies the latest pending tpa request.;
} }
[string:player] { [string:player] {
run tpdeny2 player; run tpdeny2 player;
help Denies the specified pending tpa request.;
} }
} }
@@ -127,6 +136,7 @@ command tplist {
[empty] { [empty] {
run tplist; run tplist;
help Shows you a list of all the incoming tpa requests.;
} }
} }