summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/modules/vanish/Vanish.cmd
blob: efbc7554b33fdadfa58cd0678d6c4bc449d4b684 (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
command vanish { 
    [empty] { 
        help Toggles your vanish status.; 
        type player; 
        run vanish; 
        perm utils.vanish; 
    } 
    on { 
        help Turns your vanish on.; 
        type player; 
        run vanish_on; 
        perm utils.vanish; 
    } 
    off { 
        help Turns your vanish off.; 
        type player; 
        run vanish_off; 
        perm utils.vanish; 
    } 
    [string:name] { 
        help Toggles someone elses vanish; 
        run vanish_other name; 
        perm utils.vanish.other; 
    } 
}
command imout { 
    alias imin;
    perm utils.vanish.imout;
	[empty] { 
		help Makes you magically disappear; 
		type player; 
		run imout; 
	} 
}