I have a public class and within that class I have Msg msg = new Msg(); and some public void thingys too.
The problem is that I can't use msg.log(""); inside those public voids int he main class It works if I put Msg msg = new Msg(); before every time I use msg in the public voids, but I want to use it globally.
I've tried to change it to private static Msg msg = new Msg(); and public static Msg msg = new Msg(); but it doesn't work
The error I am getting in console is
java.lang.NoClassDefFoundError:
enji/lep/Msg at enji.lep.chat.Chat.<init>(Chat.java:16)
It works if I do new Msg().log("test") but not with msg.log("test")
My code:
package enji.lep.chat;
import java.util.logging.Logger;
import org.bukkit.ChatColor;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
import org.bukkit.plugin.java.JavaPlugin;
import enji.lep.Msg;
/* Created by enji */
public class Chat extends JavaPlugin {
Logger log = Logger.getLogger("Minecraft");
Msg msg = new Msg();
@Override
public void onEnable() {
msg.log("Talliban bajs i simskolans sovrum!!!!"); <--CAUSES MY ERROR
}
@Override
public void onDisable() {
log.info("plugin off");
}
public boolean onCommand(CommandSender sender, Command cmd, String command, String[] args) {
Player player = (Player)sender;
if (sender instanceof Player) {
if(command.equalsIgnoreCase("me")) {
if (player.hasPermission("lep.chat.me") || player.hasPermission("lep.all") || player.isOp()) {
if (args.length < 1) {
player.sendMessage(ChatColor.RED + "You executed the command the wrong way.");
}
else {
String message = "";
for (int i = 0; i < args.length; i++) {
if (i > 0) message += " ";
message += args[i];
}
getServer().broadcastMessage(ChatColor.AQUA + player.getName() + " " + message);
}
}
else {
player.sendMessage(Msg.np);
log.info(player.getName() + Msg.tti + command);
}
}//End of command: me
if(command.equalsIgnoreCase("s")) {
if (player.hasPermission("lep.chat.server") || player.hasPermission("lep.chat.all") || player.isOp()) {
if (args.length < 1) {
player.sendMessage(ChatColor.RED + "You executed the command the wrong way.");
}
else {
String message = "";
for (int i = 0; i < args.length; i++) {
if (i > 0) message += " ";
message += args[i];
}
getServer().broadcastMessage(ChatColor.LIGHT_PURPLE + "[Server] " + message);
}
}
else {
player.sendMessage(Msg.np);
log.info(player.getName() + Msg.tti + command);
}
}//End of command: s
if(command.equalsIgnoreCase("bc")) {
if (player.hasPermission("lep.chat.broadcast") || player.hasPermission("lep.chat.all") || player.isOp()) {
if (args.length < 1) {
player.sendMessage(ChatColor.RED + "You executed the command the wrong way.");
}
else {
String message = "";
for (int i = 0; i < args.length; i++) {
if (i > 0) message += " ";
message += args[i];
}
getServer().broadcastMessage(ChatColor.GREEN + "[Broadcast] " + ChatColor.YELLOW + message);
}
}
else {
player.sendMessage(Msg.np);
log.info(player.getName() + Msg.tti + command);
}
}//End of command: bc
}
else {
log.info(Msg.oig);
}
return false;
}
}