Archived
0

Standardized Permissions

- Will be test on test-production.
This commit is contained in:
Minenash
2018-11-16 19:09:11 -05:00
parent 14c05dd762
commit 27cccc83f4
26 changed files with 96 additions and 93 deletions

View File

@@ -1,39 +1,36 @@
command seen {
[string:player] {
perm utils.seen;
[string:player] {
help Displays information about a player.;
perm utils.seen;
run seen player;
}
[string:player] [flag:ips] {
help Displays information about a player.;
perm utils.seen;
run seen2 player ips;
}
}
command firstseen {
[empty] {
run firstseen;
type player;
help Gives the date and time they first joined;
perm utils.firstseen;
}
[string:person] {
run firstseenP person;
help Gives the date and time when a player first joined;
perm utils.firstseen.other;
}
perm utils.seen.firstseen;
[empty] {
run firstseen;
type player;
help Gives the date and time they first joined;
}
[string:person] {
run firstseenP person;
help Gives the date and time when a player first joined;
}
}
command playtime {
perm utils.playtime;
[empty] {
type player;
run playtimeDef;
perm utils.playtime;
help Displays your total playtime!;
}
[string:name] {
run playtime name;
perm utils.playtime.others;
help Displays the playtime of another player. The player must be online!;
}
}
@@ -42,12 +39,12 @@ command uuid {
[empty] {
type player;
run uuidDef;
perm utils.uuid;
perm utils.seen.uuid;
help Displays your UUID (click to copy);
}
[string:name] {
run uuid name;
perm utils.uuid.other;
perm utils.seen.uuid.other;
help Displays someone elses UUID (click to copy);
}
}