Пример #1
0
  public void execute(CommandSender sender, CommandParameters params) {
    CommandResult res = new CommandResult();
    params.init(CommandType.TEXT);
    String text = params.paramString();
    res.setFailText("[R][WHITE]You didn't enter anything!");

    if (text == null) res.send();

    Mobile mob = (Mobile) sender;
    mob.getBaseModel().setDescription(text);
    res.setText("[R][WHITE]Description changed to: " + text);
    res.setSuccessful(true);
    res.send();
  }