Minecraft PC IP: play.cubecraft.net

DrHam

Forum Veteran
Sep 15, 2015
3,615
4,165
518
Kepler-452b
Hi! I'm aking a plugin....
package mjs.minecraft.plugin.hello;

import java.util.logging.Logger;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
import org.bukkit.plugin.PluginManager;
import org.bukkit.plugin.java.JavaPlugin;

public class HelloPlugin extends JavaPlugin {

public static final Logger log = Logger.getLogger("Minecraft");

@Override
public void onDisable() {
PluginManager pluginManager = getServer().getPluginManager();
log.info("Hello plugin has been disabled.");
}

@Override
public void onEnable() {
log.info("Plugin has been enabled!");
}

@Override
public boolean onCommand(CommandSender sender, Command command,
String label, String[] args) {

if(label.equals("hello")) {
Player player = (Player) sender;
player.sendMessage("Hello " + player.getDisplayName());
return true;
}

return false;
}
}
name: MHello
main: mjs.minecraft.plugin.hello.HelloPlugin
version: 0.1
author: Hangar555
website:
description: Example command to say hello to the user

commands:
hello:
description: Say hello to the user.
usage: /hi
 

Dan:

Well-Known Member
Aug 20, 2015
334
223
118
23
California, USA
danbeneventano.me
  • Change "label.equals" to "command.getName().equalsIgnoreCase"
  • Remove the website from the yml because you're not using.
  • Change the logger to "this.getLogger()"
  • In onEnable put "this.getCommand("hello").setExecutor(this::onCommand);" (if you're running Java 8)
  • Add "if(sender instanceof Player)" where you create the player
 

Mattuki

Well-Known Member
Mar 21, 2015
455
172
118
27
  • Change "label.equals" to "command.getName().equalsIgnoreCase"
  • Remove the website from the yml because you're not using.
  • Change the logger to "this.getLogger()"
  • In onEnable put "this.getCommand("hello").setExecutor(this::eek:nCommand);" (if you're running Java 8)
  • Add "if(sender instanceof Player)" where you create the player
can you explain us ? plsssssss
 
Members Online

Team online

Latest posts

Latest profile posts

Xi1m wrote on TheOrderOfSapphire's profile.
:3🍜
TheOrderOfSapphire wrote on thejumboyt's profile.
Welcome to the forums! I hope you will like it here!:D
I may or may not have bought 6 Birthday Bundles (used one on myself) and I may or may not do a Giveaway for 1 soon 😉
IMG_5319.png
Top Bottom