Minecraft PC IP: play.cubecraft.net

DrHam

Forum Veteran
Sep 15, 2015
3,615
4,166
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
24
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
28
  • 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

Members online

Latest profile posts

Livvv wrote on sebasxd12's profile.
Thanks for the follow! ^-^
Livvv wrote on spuuuni's profile.
Thanks for the follow! ^-^
who agrees that owner team of cc should see the frace thier mods are doing by ignoring/having fun of our suggestion and donot accept it either way
Cubecraft invited me to a world?!
Screenshot_20250518_163251_Chrome.jpg
Update on a previous post:

If I do a giveaway, it WILL be a tournament, but not on Cubecraft. It will be a fight to the death in the Colluseum /j

Ok, seriously, if I do one it will be like a GIANT SG that I'll make on a 200 x 200 Minecraft world. There will be time at the start before PVP is on :P.
Top Bottom