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

AnolTongi wrote on WorriedSkate940's profile.
Happy birthday!!
Xi1m wrote on caraMel's profile.
i really like chocolate, do you?
caraMel wrote on WorriedSkate940's profile.
HAPPY BIRTHDAY! ✨
TheOrderOfSapphire wrote on WorriedSkate940's profile.
Happy Birthday!:D
marshduck11 wrote on Livvv's profile.
The first sentence said "sometimes life does't give you what you want" the second one is incomplete so far only saying "not because you don't" I'm excited to see what the last sentence says!
Top Bottom