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 profile posts

Eli
So I’m working through some thread ideas and I can’t choose which one to do first, what sounds more interesting to you?

- How CubeCraft can implement the new 1.21 features
- I studied the Java Minecraft Server Market, here is what CubeCraft can do better
GiGaGekkies wrote on JellyFish01's profile.
Happy Birthday
vanilla extract is the definition of clickbait ONG
Old Picture a friend did when I did Roblox videos hahah. I think this thumbnail never got used but I still like this art style:D
20210306_172301.png
Evaluatiefout wrote on Frontlane's profile.
chipi chipi chapa chapa
Top Bottom