summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/modules/tag/Tag.cmd
blob: caa95ab6369509a84f3b85f3666fafe230cdab7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
command tag {
    add [string:player] [string:tag...] {
        help Tags a player.;
        run addtag player tag;
        perm utils.tag;
    }
    del [string:player] [int:id] {
        help Removes a tag.;
        run deltag player id;
        perm utils.tag;
    }
    check [string:player] {
        help Lists all tags of a player.;\
        run checktag player;
        perm utils.tag;
    }
    [string:player] [string:tag...] {
        help Tags a player.;
        run addtag player tag;
        perm utils.tag;
    }
}