summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/modules/seen/Seen.cmd
blob: 213aa34f490755ccb4c3fd35d3bce5fb869af0cc (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
command seen {
    perm utils.seen;
    [string:player] {
        help Displays information about a player.;
        run seen player;
    }
    
    [string:player] [flag:ips] {
        help Displays information about a player.;
        run seen2 player ips;
    }
}
command firstseen {
    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;
        help Displays your total playtime!;
    }
    [string:name] {
        run playtime name;
        help Displays the playtime of another player. The player must be online!;
    }
}

command uuid {
    [empty] {
        type player;
        run uuidDef;
        perm utils.seen.uuid;
        help Displays your UUID (click to copy);
    }
    [string:name] {
        run uuid name;
        perm utils.seen.uuid.other;
        help Displays someone elses UUID (click to copy);
    }
}