summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/modules/socialspy/Socialspy.cmd
blob: c1e372cf23e7e0b4eb0c1710fea3e394c3abdf78 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
command socialspy {
    perm utils.socialspy;
    format {
        run config_format_show;
        help Displays your current format;
    }
    format --default {
        run config_format_default;
        help Resets your format back to the default;
    }
    format --reset {
        run config_format_default;
        help Resets your format back to the default;
    }
    format [string:format...] {
        run config_format format;
        help Specifies your ss format. Use /socialspy format_help to get info about how the format works.;
    }
    format_help {
        run format_help;
        help Displays info about the format command;
    }
    prefix {
        run config_prefix_default;
        help Resets your color back to the default (light gray color code);
    }
    prefix [string:prefix] {
        run config_prefix prefix;
        help Sets your prefix to the specified term.;
    }
    commands list {
        run commands_list;
        help Displays all commands you're listening to.;
    }
    commands add [string:command] {
        run commands_add command;
        help Adds a command to the list of commands that you're listening to.;
    }
    commands del [string:command] {
        run commands_del command;
        help Deletes a command from the list of commands that you're listening to.;
    }
    stripcolor on {
        run stripcolor_on;
    }
    stripcolor off {
        run stripcolor_off;
    }
    stripcolor partial {
        run stripcolor_partial;
    }
    stripcolor {
        run stripcolor;
    }
    on {
        run on;
        type player;
    }
    off {
        run off;
        type player;
    }
    migrate {
        run migrate;
        type console;
    }
    [empty] {
        run toggle;
        type player;
    }
}