summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/modules/list/List.cmd
blob: 9b4fb786dc4c44ad86ee3d0891905bac19280d1e (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
command list {
    alias ls;
    alias elist;
    alias online;
    alias eonline;
    alias playerlist;
    alias eplayerlist;
    alias plist;
    alias eplist;
    alias who;
    alias ewho;
    perm utils.list;
    [empty] {
        run list;
        help Shows all online players sorted by rank.;
    }
    [string:rank...] {
        run list_rank rank;
        help Shows all online players of the specified rank(s);
    }
}
command staff {
    perm utils.list;
    [empty] {
        help Shows all online staff.;
        run staff;
    }
}
command console_join {
    [string:name] {
        run console_join name;
        type console;
    }
}
command console_leave {
    [string:name] {
        run console_leave name;
        type console;
    }
}