Archived
0

Merged Seen and FirstSeen

This commit is contained in:
minenash
2018-01-16 19:00:56 -05:00
parent 2d0d57955e
commit 5865e277d9
3 changed files with 87 additions and 112 deletions

View File

@@ -10,4 +10,30 @@ command seen {
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;
}
}
command 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!;
}
}