diff --git a/src/main/java/ru/simsonic/rscPermissions/Bukkit/Commands/CommandEntity.java b/src/main/java/ru/simsonic/rscPermissions/Bukkit/Commands/CommandEntity.java index dae5df0..05cc478 100644 --- a/src/main/java/ru/simsonic/rscPermissions/Bukkit/Commands/CommandEntity.java +++ b/src/main/java/ru/simsonic/rscPermissions/Bukkit/Commands/CommandEntity.java @@ -55,10 +55,18 @@ public class CommandEntity { case GROUP: case USER: - answer.add(String.format("{_YL}/rscp %s listgroups {_LS}- show list of parent groups", typeName)); - answer.add(String.format("{_YL}/rscp %s listpermissions {_LS}- show list of explicit permissions", typeName)); - answer.add(String.format("{_YL}/rscp %s prefix [] {_LS}- view or change %s's prefix", typeName, typeName)); - answer.add(String.format("{_YL}/rscp %s suffix [] {_LS}- view or change %s's suffix", typeName, typeName)); + answer.add(String.format("{_YL}/rscp %s [new] listgroups {_LS}- show list of parent groups", typeName)); + answer.add(String.format("{_YL}/rscp %s [new] listpermissions {_LS}- show list of explicit permissions", typeName)); + answer.add(String.format("{_YL}/rscp %s [new] prefix {_LS}- view %s's prefix", typeName, typeName)); + answer.add(String.format("{_YL}/rscp %s [new] suffix {_LS}- view %s's suffix", typeName, typeName)); + answer.add(String.format("{_YL}/rscp %s [new] addgroup [options]", typeName)); + answer.add(String.format("{_YL}/rscp %s [new] addpermission <[-]perm> [options]", typeName)); + answer.add(String.format("{_YL}/rscp %s [new] removegroup ", typeName)); + answer.add(String.format("{_YL}/rscp %s [new] removepermission ", typeName)); + answer.add(String.format("{_YL}[options] {_LS}can be:")); + answer.add(String.format("{_LS}1. {_WH}destination {_LS} -- it is destination, yes.")); + answer.add(String.format("{_LS}2. {_WH}expirience {_LS} -- NOT WORKING.")); + answer.add(String.format("{_LS}3. {_WH}lifitime {_LS} -- NOT READY, will be like '1hours12min30s'.")); break; case PLAYER: answer.add(String.format("{_YL}/rscp %s listgroups {_LS}- show resulting inheritance tree", typeName));