本文整理汇总了Java中net.minecraft.command.CommandHelp类的典型用法代码示例。如果您正苦于以下问题:Java CommandHelp类的具体用法?Java CommandHelp怎么用?Java CommandHelp使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
CommandHelp类属于net.minecraft.command包,在下文中一共展示了CommandHelp类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: registerCommands
import net.minecraft.command.CommandHelp; //导入依赖的package包/类
@EventHandler
public void registerCommands(RegisterCommandsEvent event){
event.registerCommandClass(this);
event.subcommand("team").registerCommandClass(new TeamCommand());
event.subcommand("nailed").registerCommandClass(new NailedCommand());
event.subcommand("reload").registerCommandClass(new ReloadCommand());
event.subcommand("game").registerCommandClass(new GameCommand());
event.subcommand("map").registerCommandClass(new MapCommand());
event.registerCallable(new VanillaCommand(new CommandHelp()), "help");
event.registerCallable(new VanillaCommand(new CommandGive()), "give");
event.registerCallable(new VanillaCommand(new CommandTestForBlock()), "testforblock");
event.registerCallable(new VanillaCommand(new CommandTestFor()), "testfor");
event.registerCallable(new VanillaCommand(new CommandSetBlock()), "setblock");
event.registerCallable(new VanillaCommand(new CommandEffect()), "effect");
event.registerCallable(new VanillaCommand(new CommandTeleport()), "tp");
event.registerCallable(new VanillaCommand(new CommandExecuteAt()), "execute");
}
开发者ID:nailed,项目名称:nailed,代码行数:19,代码来源:CommandPlugin.java
示例2: onServerStarting
import net.minecraft.command.CommandHelp; //导入依赖的package包/类
@Mod.EventHandler
public void onServerStarting(final FMLServerStartingEvent event) {
event.registerServerCommand(new CommandHelp() {
@SuppressWarnings("ConstantConditions")
@Override
protected List<ICommand> getSortedPossibleCommands(final ICommandSender sender, final MinecraftServer server) {
final List<ICommand> list = server.getCommandManager().getPossibleCommands(sender);
final Iterator<ICommand> iterator = list.iterator();
while (iterator.hasNext()) {
final ICommand command = iterator.next();
try {
if (command.getName() == null) {
log.warn("Identified command with null name, Ignoring: {}", command.getClass().getName());
iterator.remove();
} else if (command.getUsage(sender) == null) {
log.warn("Identified command with null usage, Ignoring: {}", command.getClass().getName());
iterator.remove();
}
} catch (Exception e) {
log.warn("Failed to test command '{}'", command, e);
}
}
list.sort(Comparator.comparing(ICommand::getName));
return list;
}
});
}
开发者ID:matthewprenger,项目名称:HelpFixer,代码行数:33,代码来源:HelpFixer.java
示例3: overrideHelp
import net.minecraft.command.CommandHelp; //导入依赖的package包/类
private void overrideHelp(final CommandHandler commandHandler) {
if (Loader.isModLoaded("HelpFixer")) {
log.trace("HelpFixer detected. Not overriding /help");
} else {
log.trace("Overriding /help");
commandHandler.registerCommand(new CommandHelp() {
@Override
protected List<ICommand> getSortedPossibleCommands(final ICommandSender sender) {
final List<ICommand> list = MinecraftServer.getServer().getCommandManager().getPossibleCommands(sender);
final Iterator<ICommand> iterator = list.iterator();
while (iterator.hasNext()) {
ICommand command = iterator.next();
if (command.getCommandName() == null) {
log.warn("Identified command with a null name: {}", command.getClass());
iterator.remove();
} else if (command.getCommandUsage(sender) == null) {
log.warn("Identified command with null usage: {}", command.getClass());
iterator.remove();
}
}
Collections.sort(list, (o1, o2) -> o1.getCommandName().compareTo(o2.getCommandName()));
return list;
}
});
}
}
开发者ID:MCServerTools,项目名称:ServerTools-CORE,代码行数:29,代码来源:CommandManager.java
示例4: ServerCommandManager
import net.minecraft.command.CommandHelp; //导入依赖的package包/类
public ServerCommandManager() {
this.func_71560_a(new CommandTime());
this.func_71560_a(new CommandGameMode());
this.func_71560_a(new CommandDifficulty());
this.func_71560_a(new CommandDefaultGameMode());
this.func_71560_a(new CommandKill());
this.func_71560_a(new CommandToggleDownfall());
this.func_71560_a(new CommandWeather());
this.func_71560_a(new CommandXP());
this.func_71560_a(new CommandServerTp());
this.func_71560_a(new CommandGive());
this.func_71560_a(new CommandEffect());
this.func_71560_a(new CommandEnchant());
this.func_71560_a(new CommandServerEmote());
this.func_71560_a(new CommandShowSeed());
this.func_71560_a(new CommandHelp());
this.func_71560_a(new CommandDebug());
this.func_71560_a(new CommandServerMessage());
this.func_71560_a(new CommandServerSay());
this.func_71560_a(new CommandSetSpawnpoint());
this.func_71560_a(new CommandGameRule());
this.func_71560_a(new CommandClearInventory());
this.func_71560_a(new ServerCommandTestFor());
this.func_71560_a(new CommandSpreadPlayers());
this.func_71560_a(new CommandPlaySound());
this.func_71560_a(new ServerCommandScoreboard());
if(MinecraftServer.func_71276_C().func_71262_S()) {
this.func_71560_a(new CommandServerOp());
this.func_71560_a(new CommandServerDeop());
this.func_71560_a(new CommandServerStop());
this.func_71560_a(new CommandServerSaveAll());
this.func_71560_a(new CommandServerSaveOff());
this.func_71560_a(new CommandServerSaveOn());
this.func_71560_a(new CommandServerBanIp());
this.func_71560_a(new CommandServerPardonIp());
this.func_71560_a(new CommandServerBan());
this.func_71560_a(new CommandServerBanlist());
this.func_71560_a(new CommandServerPardon());
this.func_71560_a(new CommandServerKick());
this.func_71560_a(new CommandServerList());
this.func_71560_a(new CommandServerWhitelist());
this.func_71560_a(new CommandSetPlayerTimeout());
} else {
this.func_71560_a(new CommandServerPublishLocal());
}
CommandBase.func_71529_a(this);
}
开发者ID:HATB0T,项目名称:RuneCraftery,代码行数:49,代码来源:ServerCommandManager.java
注:本文中的net.minecraft.command.CommandHelp类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论