Hi,
For some reason neither the EZPlugin nor the Canary libs are not found when I run the NameCow and HelloWorldEZ scripts. I followed the instructions and see the EZPlugin in the server lib folder. The HelloWorld script works so I know the Canary jar file is found. Anyway here is the error I’m seeing:
Compiling with javac… src\helloworld\HelloWorld.java:10: error: package net.canarymod.plugin does not exist import net.canarymod.plugin.Plugin; ^ src\helloworld\HelloWorld.java:11: error: package net.canarymod.logger does not exist import net.canarymod.logger.Logman; ^ src\helloworld\HelloWorld.java:12: error: package net.canarymod does not exist import net.canarymod.Canary; ^ src\helloworld\HelloWorld.java:13: error: package net.canarymod.commandsys does not exist import net.canarymod.commandsys.*;
src\helloworld\HelloWorld.java:14: error: package net.canarymod.chat does not ex ist import net.canarymod.chat.MessageReceiver; ^ src\helloworld\HelloWorld.java:15: error: package com.pragprog.ahmine.ez does no t exist import com.pragprog.ahmine.ez.EZPlugin; ^ src\helloworld\HelloWorld.java:17: error: cannot find symbol public class HelloWorld extends EZPlugin { ^ symbol: class EZPlugin src\helloworld\HelloWorld.java:22: error: cannot find symbol public void helloCommand(MessageReceiver caller, String[] parameters) { ^ symbol: class MessageReceiver location: class HelloWorld src\helloworld\HelloWorld.java:18: error: cannot find symbol @Command(aliases = { “hello” }, ^ symbol: class Command location: class HelloWorld src\helloworld\HelloWorld.java:24: error: cannot find symbol Canary.instance().getServer().broadcastMessage(msg); ^ symbol: variable Canary location: class HelloWorld 10 errors
Any suggestions?
Thanks! Joe