Archived
0
This repository has been archived on 2024-08-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Modules/src/main/java/com/redstoner/modules/vanish/Vanish.cmd
2018-12-11 17:56:41 -05:00

34 lines
701 B
Batchfile

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;
}
}