minecraft
Plugin-Befehle
Suche…
Hallo Befehl
Im folgenden Code können Sie sehen, wie Sie Ihrem Plugin einen Befehl hinzufügen.
MainClass.java
package yourpackage;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
import org.bukkit.plugin.java.JavaPlugin;
public class MainClass extends JavaPlugin {
@Override
public boolean onCommand(CommandSender sender, Command command, String label, String[] args) {
if (command.getName().equalsIgnoreCase("hello")) {
sender.sendMessage("Hey!");
}
return false;
}
}
Plugin.yml
name: HelloCommand
main: yourpackage.MainClass
version: 1.0
commands:
hello:
description: Hello
Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow