summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/modules/saylol/Saylol.cmd
blob: b81605abfc7d3917cba87f43272438d0f3454e7f (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
command lol {
    alias kek;

    add [string:text...] {
        help Lols a text.;
        run addlol text;
        perm utils.lol.admin;
    }
    del [int:id] {
        help Unlols a lol.;
        run dellol id;
        perm utils.lol.admin;
    }
    set [int:id] [string:text...] {
        help Relols a lol.;
        run setlol id text;
        perm utils.lol.admin;
    }
    id [int:id] {
        help Lols specifically.;
        run lolid id;
        perm utils.lol.id;
    }
    list [int:page] {
        help Shows lols.;
        run listlols page;
        perm utils.lol.list;
    }
    list {
        help Shows lols.;
        run listlolsdef;
        perm utils.lol.list;
    }
    search [flag:-i] [string:text...] {
        help Search lols.;
        run searchlol -i text;
        perm utils.lol.search;
    }
    match [flag:-i] [string:regex...] {
        help Search lols. But better.;
        run matchlol -i regex;
        perm utils.lol.match;
    }
    [empty] {
        help Lols.;
        run saylol;
        perm utils.lol;
    }
}