Here's all my code:
@Override
public void onEnable()
{
getLogger().info("Plugin Enabled!");
public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args)
{
if(cmd.getName().equalsIgnoreCase("Plugin"))
{
// If the player typed /plugin then do the following...
if (sender instanceof Player)
{
Player player = (Player) sender;
// Gives player item
return true;
}
else
{
sender.sendMessage("You must be a player!");
return false;
}
}
}
@Override
public void onDisable()
{
getLogger().info("Plugin Disabled!");
}
}
In case you didn't know, this is a plugin for minecraft bukkit.
Here's the error line:
getLogger().info("Plugin Enabled!");
When i delete the semicolon, the message in " " is an error, and when i insert a "}" or/and a "{" it shows an error, help!