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/blockplacemods/BlockPlaceMods.cmd
2019-01-03 22:48:03 -05:00

43 lines
1.0 KiB
Batchfile

command bpm {
alias set;
alias toggle;
alias mod;
perm blockplacemods.use;
type player;
[empty] {
help Lists the block place mods and their statuses.;
run list_mods;
}
list [empty] {
help Lists the block place mods and their statuses.;
run list_mods;
}
reset [string:mod] {
help Resets the specified mod's settings to the default value.;
run reset_mod mod;
}
toggle [string:mod] {
help Toggles a block place mod.;
run toggle_mod mod;
}
set [string:mod] [string:value] {
help Sets the specified mod's state to the specified value. Only works for mods that have a state.;
run set_mod_value mod value;
}
[string:mod] {
help Toggles a block place mod.;
run toggle_mod_no_prefix mod;
}
[string:mod] [string:value] {
help Sets the specified mod's state to the specified value. Only works for mods that have a state.;
run set_mod_value mod value;
}
}