Buildfile: C:\Users\Sario\workspace\aCis_300\aCis_gameserver\build.xml
clean:
[delete] Deleting directory C:\Users\Sario\workspace\aCis_300\aCis_gameserver\build
checkRequirements:
[echo] Verification of your JDK version.
version:
[echo] aCis gameserver revision: exported
init:
[mkdir] Created dir: C:\Users\Sario\workspace\aCis_300\aCis_gameserver\build
[mkdir] Created dir: C:\Users\Sario\workspace\aCis_300\aCis_gameserver\build\classes
[mkdir] Created dir: C:\Users\Sario\workspace\aCis_300\aCis_gameserver\build\dist
[mkdir] Created dir: C:\Users\Sario\workspace\aCis_300\aCis_gameserver\build\dist\login
[mkdir] Created dir: C:\Users\Sario\workspace\aCis_300\aCis_gameserver\build\dist\gameserver
compile:
[javac] Compiling 1309 source files to C:\Users\Sario\workspace\aCis_300\aCis_gameserver\build\classes
[javac] C:\Users\Sario\workspace\aCis_300\aCis_gameserver\java\net\sf\l2j\gameserver\handler\voicedcommandhandlers\Online.java:26: error: Online is not abstract and does not override abstract method useVoicedCommand(String,L2PcInstance) in IVoicedCommandHandler
[javac] public class Online implements IVoicedCommandHandler
[javac] ^
[javac] 1 error
This update resaves 25_25 from the original (with sounds)
(without the cave below)
Some emitter fixes (removed waterfalls with high-poly meshes)
The geodata is old, but it works
Everything else is unchanged
Download
P.S. The effect files are taken from the high client for Interlude, so if you're experiencing critical skills, use the default ones for your Version.
GX-Ext Which file of the svn files should i edit to make blow skills to have 100% chance so i can add the settings in the IlExt.ini? because when im changing it from the skilldata.txt it just helps
Question
ciortas
eclipse compile error
Buildfile: C:\Users\Sario\workspace\aCis_300\aCis_gameserver\build.xml clean: [delete] Deleting directory C:\Users\Sario\workspace\aCis_300\aCis_gameserver\build checkRequirements: [echo] Verification of your JDK version. version: [echo] aCis gameserver revision: exported init: [mkdir] Created dir: C:\Users\Sario\workspace\aCis_300\aCis_gameserver\build [mkdir] Created dir: C:\Users\Sario\workspace\aCis_300\aCis_gameserver\build\classes [mkdir] Created dir: C:\Users\Sario\workspace\aCis_300\aCis_gameserver\build\dist [mkdir] Created dir: C:\Users\Sario\workspace\aCis_300\aCis_gameserver\build\dist\login [mkdir] Created dir: C:\Users\Sario\workspace\aCis_300\aCis_gameserver\build\dist\gameserver compile: [javac] Compiling 1309 source files to C:\Users\Sario\workspace\aCis_300\aCis_gameserver\build\classes [javac] C:\Users\Sario\workspace\aCis_300\aCis_gameserver\java\net\sf\l2j\gameserver\handler\voicedcommandhandlers\Online.java:26: error: Online is not abstract and does not override abstract method useVoicedCommand(String,L2PcInstance) in IVoicedCommandHandler [javac] public class Online implements IVoicedCommandHandler [javac] ^ [javac] 1 erroronline.java
package net.sf.l2j.gameserver.handler.voicedcommandhandlers; import java.util.StringTokenizer; import net.sf.l2j.gameserver.handler.IVoicedCommandHandler; import net.sf.l2j.gameserver.model.L2World; import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance; /** * * @author */ public class Online implements IVoicedCommandHandler { private static String[] _voicedCommands = { "online" }; public boolean useVoicedCommand(String command, L2PcInstance activeChar, String target) { if(command.equalsIgnoreCase("online")) { activeChar.sendMessage("======<Status Online>======"); activeChar.sendMessage("Players Online: " + L2World.getInstance().getAllPlayers().size() + ""); activeChar.sendMessage("======================="); } return true; } public String[] getVoicedCommandList() { return _voicedCommands; } }9 answers to this question
Recommended Posts