straikmen 18 Опубликовано 12 июня, 2015 Сборка laveo на исходнике overworld.100 warring в компиле в следствие чего скрипты в сборке не запускаются. Компилил через ant стоит 6-тая ява, пробовал через eclipse результат тот же. Может кто уже сталкивался с такой проблемой? Complite log init: compile-commons: [delete] Deleting directory D:\laveo2\build\classes [mkdir] Created dir: D:\laveo2\build\classes [javac] D:\laveo2\compiling\build.xml:57: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds [javac] Compiling 77 source files to D:\laveo2\build\classes [javac] D:\laveo2\commons\src\main\java\l2p\commons\dbcp\BasicDataSource.java:42: warning: [unchecked] unchecked call to GenericObjectPool(org.apache.commons.pool.PoolableObjectFactory<T>) as a member of the raw type org.apache.commons.pool.impl.GenericObjectPool [javac] GenericObjectPool connectionPool = new GenericObjectPool(null); [javac] ^ [javac] D:\laveo2\commons\src\main\java\l2p\commons\dbcp\BasicDataSource.java:57: warning: [unchecked] unchecked call to GenericKeyedObjectPoolFactory(org.apache.commons.pool.KeyedPoolableObjectFactory<K,V>,int,byte,long,int,int) as a member of the raw type org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory [javac] statementPoolFactory = new GenericKeyedObjectPoolFactory(null, -1, GenericObjectPool.WHEN_EXHAUSTED_FAIL, 0L, 1, GenericKeyedObjectPool.DEFAULT_MAX_TOTAL); [javac] ^ [javac] D:\laveo2\commons\src\main\java\l2p\commons\util\TroveUtils.java:22: warning: [serial] serializable class l2p.commons.util.TroveUtils.TIntObjectHashMapEmpty has no definition of serialVersionUID [javac] private static class TIntObjectHashMapEmpty<V> extends TIntObjectHashMap<V> [javac] ^ [javac] D:\laveo2\commons\src\main\java\l2p\commons\util\TroveUtils.java:42: warning: [serial] serializable class l2p.commons.util.TroveUtils.TIntArrayListEmpty has no definition of serialVersionUID [javac] private static class TIntArrayListEmpty extends TIntArrayList [javac] ^ [javac] 4 warnings commons-jar: [jar] Building jar: D:\laveo2\build\commons.jar compile-gameserver: [delete] Deleting directory D:\laveo2\build\classes [mkdir] Created dir: D:\laveo2\build\classes [javac] D:\laveo2\compiling\build.xml:86: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds [javac] Compiling 1632 source files to D:\laveo2\build\classes [javac] D:\laveo2\gameserver\src\main\java\l2p\gameserver\model\entity\Reflection.java:573: warning: [deprecation] l2p.gameserver.model.SimpleSpawner in l2p.gameserver.model has been deprecated [javac] public void addSpawn(SimpleSpawner spawn) [javac] ^ [javac] D:\laveo2\gameserver\src\main\java\l2p\gameserver\model\entity\Reflection.java:579: warning: [deprecation] l2p.gameserver.templates.InstantZone.SpawnInfo in l2p.gameserver.templates.InstantZone has been deprecated [javac] public void fillSpawns(List<InstantZone.SpawnInfo> si) [javac] ^ [javac] D:\laveo2\gameserver\src\main\java\l2p\gameserver\model\entity\BlockCheckerEngine.java:21: warning: [deprecation] l2p.gameserver.model.SimpleSpawner in l2p.gameserver.model has been deprecated [javac] import l2p.gameserver.model.SimpleSpawner; [javac] ^ [javac] D:\laveo2\gameserver\src\main\java\l2p\gameserver\model\entity\BlockCheckerEngine.java:60: warning: [deprecation] l2p.gameserver.model.SimpleSpawner in l2p.gameserver.model has been deprecated [javac] private List<SimpleSpawner> _spawns = new CopyOnWriteArrayList<SimpleSpawner>(); [javac] ^ [javac] D:\laveo2\gameserver\src\main\java\l2p\gameserver\instancemanager\DimensionalRiftManager.java:268: warning: [deprecation] l2p.gameserver.model.SimpleSpawner in l2p.gameserver.model has been deprecated [javac] private final List<SimpleSpawner> _roomSpawns; [javac] ^ [javac] D:\laveo2\gameserver\src\main\java\l2p\gameserver\instancemanager\DimensionalRiftManager.java:298: warning: [deprecation] l2p.gameserver.model.SimpleSpawner in l2p.gameserver.model has been deprecated [javac] public List<SimpleSpawner> getSpawns() [javac] ^ и тд BasicDataSource.java package l2p.commons.dbcp; import org.apache.commons.dbcp.ConnectionFactory; import org.apache.commons.dbcp.DriverManagerConnectionFactory; import org.apache.commons.dbcp.PoolableConnectionFactory; import org.apache.commons.dbcp.PoolingDataSource; import org.apache.commons.pool.ObjectPool; import org.apache.commons.pool.impl.GenericKeyedObjectPool; import org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory; import org.apache.commons.pool.impl.GenericObjectPool; import javax.sql.DataSource; import java.io.PrintWriter; import java.sql.Connection; import java.sql.SQLException; import java.util.Properties; /** * Базовая реализация пула потоков с использованием DBCP * * @author G1ta0 */ public class BasicDataSource implements DataSource { private final PoolingDataSource _source; private final ObjectPool _connectionPool; /** * * @param driver The fully qualified Java class name of the JDBC driver to be used. * @param connectURI The connection URL to be passed to our JDBC driver to establish a connection. * @param uname The connection username to be passed to our JDBC driver to establish a connection. * @param passwd The connection password to be passed to our JDBC driver to establish a connection. * @param maxActive The maximum number of active connections that can be allocated from this pool at the same time, or negative for no limit. * @param idleTimeOut The minimum amount of time connection may stay in pool (in seconds) * @param idleTestPeriod The period of time to check idle connections (in seconds) * @param poolPreparedStatements * @throws SQLException */ public BasicDataSource(String driver, String connectURI, String uname, String passwd, int maxActive, int maxIdle, int idleTimeOut, int idleTestPeriod, boolean poolPreparedStatements) { GenericObjectPool connectionPool = new GenericObjectPool(null); connectionPool.setMaxActive(maxActive); connectionPool.setMaxIdle(maxIdle); connectionPool.setMinIdle(1); connectionPool.setMaxWait(-1L); connectionPool.setWhenExhaustedAction(GenericObjectPool.WHEN_EXHAUSTED_GROW); connectionPool.setTestOnBorrow(false); connectionPool.setTestWhileIdle(true); connectionPool.setTimeBetweenEvictionRunsMillis(idleTestPeriod * 1000L); connectionPool.setNumTestsPerEvictionRun(maxActive); connectionPool.setMinEvictableIdleTimeMillis(idleTimeOut * 1000L); GenericKeyedObjectPoolFactory statementPoolFactory = null; if(poolPreparedStatements) statementPoolFactory = new GenericKeyedObjectPoolFactory(null, -1, GenericObjectPool.WHEN_EXHAUSTED_FAIL, 0L, 1, GenericKeyedObjectPool.DEFAULT_MAX_TOTAL); Properties connectionProperties = new Properties(); connectionProperties.put("user", uname); connectionProperties.put("password", passwd); ConnectionFactory connectionFactory = new DriverManagerConnectionFactory(connectURI, connectionProperties); @SuppressWarnings("unused") PoolableConnectionFactory poolableConnectionFactory = new PoolableConnectionFactory(connectionFactory, connectionPool, statementPoolFactory, "SELECT 1", false, true); PoolingDataSource dataSource = new PoolingDataSource(connectionPool); _connectionPool = connectionPool; _source = dataSource; } public Connection getConnection(Connection con) throws SQLException { return con == null || con.isClosed() ? con = _source.getConnection() : con; } public int getBusyConnectionCount() throws SQLException { return _connectionPool.getNumActive(); } public int getIdleConnectionCount() throws SQLException { return _connectionPool.getNumIdle(); } public void shutdown() throws Exception { _connectionPool.close(); } @Override public PrintWriter getLogWriter() throws SQLException { return _source.getLogWriter(); } @Override public void setLogWriter(PrintWriter out) throws SQLException { _source.setLogWriter(out); } @Override public void setLoginTimeout(int seconds) throws SQLException { throw new UnsupportedOperationException(); } @Override public int getLoginTimeout() throws SQLException { throw new UnsupportedOperationException(); } @Override public <T> T unwrap(Class<T> iface) throws SQLException { throw new UnsupportedOperationException(); } @Override public boolean isWrapperFor(Class<?> iface) throws SQLException { return false; } @Override public Connection getConnection() throws SQLException { return _source.getConnection(); } @Override public Connection getConnection(String username, String password) throws SQLException { throw new UnsupportedOperationException(); } /*@Override public Logger getParentLogger() throws SQLFeatureNotSupportedException { // TODO Auto-generated method stub return null; }*/ } build.xml <?xml version="1.0" encoding="UTF-8"?> <project name="Build All" default="dist" basedir="../"> <property name="build.version" value="1.0" /> <property name="debug" value="on" /> <property name="src.gameserver" location="gameserver/src/main/java" /> <property name="src.loginserver" location="loginserver/src/main/java" /> <property name="src.commons" location="commons/src/main/java" /> <property name="svnversion" location="svnversion/svnversion.exe" /> <property name="dist" location="dist" /> <property name="lib" location="lib" /> <property name="build" location="build" /> <property name="build.classes" location="${build}/classes" /> <property name="build.dist" location="${build}/dist" /> <property name="build.dist.loginserver" location="${build.dist}/loginserver" /> <property name="build.dist.gameserver" location="${build.dist}/gameserver" /> <path id="classpath"> <fileset dir="${lib}"> <include name="**/*.jar" /> </fileset> </path> <pathconvert property="jar.list" pathsep=" " refid="classpath"> <mapper type="flatten" /> </pathconvert> <property name="build.classpath" refid="classpath"/> <tstamp> <format property="build.tstamp" pattern="yyyy.MM.dd HH:mm" /> </tstamp> <target name="clean" description="Remove the output directories."> <delete dir="${build}" /> </target> <target name="init" description="Create the output directories."> <mkdir dir="${build}" /> </target> <target name="compile-commons" depends="init"> <delete dir="${build.classes}" /> <mkdir dir="${build.classes}" /> <javac srcdir="${src.commons}" destdir="${build.classes}" debug="${debug}" source="1.6" target="1.6" encoding="UTF-8" nowarn="off" classpath="${build.classpath}"> <compilerarg value="-Xlint:all" /> </javac> </target> <target name="commons-jar" depends="compile-commons"> <exec dir="${basedir}" executable="${svnversion}" outputproperty="build.revision" failifexecutionfails="false"> <arg line="-n '${src.commons}'" /> </exec> <jar destfile="${build}/commons.jar"> <fileset dir="${build.classes}" /> <manifest> <attribute name="Build-By" value="${user.name}" /> <attribute name="Build-Date" value="${build.tstamp}" /> <attribute name="Implementation-Build" value="${build.revision}" /> <attribute name="Implementation-Version" value="${build.version}" /> </manifest> </jar> </target> <target name="compile-gameserver" depends="commons-jar"> <delete dir="${build.classes}" /> <mkdir dir="${build.classes}" /> <javac srcdir="${src.gameserver}" destdir="${build.classes}" debug="${debug}" source="1.6" target="1.6" encoding="UTF-8" nowarn="off" classpath="${build.classpath}:${build}/commons.jar"> <compilerarg value="-Xlint:all" /> </javac> </target> <target name="gameserver-jar" depends="compile-gameserver"> <exec dir="${basedir}" executable="${svnversion}" outputproperty="build.revision" failifexecutionfails="false"> <arg line="-n '${src.gameserver}'" /> </exec> <jar destfile="${build}/gameserver.jar"> <fileset dir="${build.classes}" /> <manifest> <attribute name="Main-Class" value="l2p.gameserver.GameServer" /> <attribute name="Class-Path" value="${jar.list}" /> <attribute name="Build-By" value="${user.name}" /> <attribute name="Build-Date" value="${build.tstamp}" /> <attribute name="Implementation-Build" value="${build.revision}" /> <attribute name="Implementation-Version" value="${build.version}" /> </manifest> </jar> </target> <target name="gameserver" depends="gameserver-jar"> <mkdir dir="${build.dist}" /> <mkdir dir="${build.dist.gameserver}" /> <mkdir dir="${build.dist.gameserver}/log" /> <sync todir="${build.dist.gameserver}"> <fileset dir="${dist}/gameserver"/> </sync> <copy todir="${build.dist.gameserver}"> <fileset dir="${build}"> <include name="gameserver.jar" /> <include name="commons.jar" /> <include name="ccpGuard.jar" /> </fileset> </copy> <fixcrlf srcdir="${build.dist.gameserver}" eol="lf" eof="remove" includes="**/*.sh"> </fixcrlf> <fixcrlf srcdir="${build.dist.gameserver}" eol="crlf" eof="remove" includes="**/*.bat"> </fixcrlf> </target> <target name="compile-loginserver" depends="commons-jar, gameserver-jar"> <delete dir="${build.classes}" /> <mkdir dir="${build.classes}" /> <javac srcdir="${src.loginserver}" destdir="${build.classes}" debug="${debug}" source="1.6" target="1.6" encoding="UTF-8" nowarn="off" classpath="${build.classpath}:${build}/commons.jar:${build}/gameserver.jar"> <compilerarg value="-Xlint:all" /> </javac> </target> <target name="loginserver-jar" depends="compile-loginserver"> <exec dir="${basedir}" executable="${svnversion}" outputproperty="build.revision" failifexecutionfails="false"> <arg line="-n '${src.loginserver}'" /> </exec> <jar destfile="${build}/loginserver.jar"> <fileset dir="${build.classes}" /> <manifest> <attribute name="Main-Class" value="l2p.loginserver.LoginServer" /> <attribute name="Class-Path" value="${jar.list}" /> <attribute name="Build-By" value="${user.name}" /> <attribute name="Build-Date" value="${build.tstamp}" /> <attribute name="Implementation-Build" value="${build.revision}" /> <attribute name="Implementation-Version" value="${build.version}" /> </manifest> </jar> </target> <target name="loginserver" depends="loginserver-jar"> <mkdir dir="${build.dist}" /> <mkdir dir="${build.dist.loginserver}" /> <mkdir dir="${build.dist.loginserver}/log" /> <copy todir="${build.dist.loginserver}"> <fileset dir="${build}"> <include name="loginserver.jar" /> </fileset> </copy> <copy todir="${build.dist.loginserver}"> <fileset dir="${dist}/loginserver"/> </copy> <fixcrlf srcdir="${build.dist.loginserver}" eol="lf" eof="remove" includes="**/*.sh"> </fixcrlf> <fixcrlf srcdir="${build.dist.loginserver}" eol="crlf" eof="remove" includes="**/*.bat"> </fixcrlf> </target> <target name="lib" depends="loginserver"> <copy todir="${build.dist}/lib"> <fileset dir="${lib}"> <include name="*.jar" /> </fileset> </copy> </target> <target name="dist" depends="loginserver, gameserver"> <zip destfile="${build}/L2pServer-dist.zip" basedir="${build.dist}" /> </target> </project> Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты
Elione 265 Опубликовано 12 июня, 2015 Варнинги никак не влияют на запуск скриптов. В логе нету ниодного еррора. Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты
straikmen 18 Опубликовано 12 июня, 2015 Запуск гса INFO scripts.Scripts: Scripts: Loading... [12.06.15 20:25:17:174] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\area\AIRPORT.java:13,30: AirshipArea cannot be resolved to a type [12.06.15 20:25:17:190] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\area\SPEED.java:16,28: AirshipArea cannot be resolved to a type [12.06.15 20:25:17:192] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\path\AIRPORT.java:11,45: IAirShipPathTypeHandler cannot be resolved to a type [12.06.15 20:25:17:192] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\path\MOVE.java:11,42: IAirShipPathTypeHandler cannot be resolved to a type [12.06.15 20:25:17:193] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\path\TEL.java:11,41: IAirShipPathTypeHandler cannot be resolved to a type [12.06.15 20:25:17:194] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\port\FREE.java:14,42: IAirShipPortHandler cannot be resolved to a type [12.06.15 20:25:17:195] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\port\REGULAR.java:13,45: IAirShipPortHandler cannot be resolved to a type [12.06.15 20:25:17:197] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\ship\PLEDGE.java:22,44: IAirShipTypeHandler cannot be resolved to a type [12.06.15 20:25:17:198] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\ship\REGULAR.java:17,45: IAirShipTypeHandler cannot be resolved to a type [12.06.15 20:25:17:654] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\area\AIRPORT.java:15,17: AirShipAreaTemplate cannot be resolved to a type [12.06.15 20:25:17:657] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\area\AIRPORT.java:21,22: Ship cannot be resolved to a type [12.06.15 20:25:17:658] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\area\AIRPORT.java:41,22: Ship cannot be resolved to a type [12.06.15 20:25:17:659] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\area\SPEED.java:20,15: AirShipAreaTemplate cannot be resolved to a type [12.06.15 20:25:17:660] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\area\SPEED.java:26,22: Ship cannot be resolved to a type [12.06.15 20:25:17:661] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\area\SPEED.java:37,22: Ship cannot be resolved to a type [12.06.15 20:25:17:663] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\path\AIRPORT.java:30,25: Ship cannot be resolved to a type [12.06.15 20:25:17:665] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\path\MOVE.java:30,25: Ship cannot be resolved to a type [12.06.15 20:25:17:666] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\path\TEL.java:30,25: Ship cannot be resolved to a type [12.06.15 20:25:17:668] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\port\FREE.java:17,26: AirPortTemplate cannot be resolved to a type [12.06.15 20:25:17:670] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\port\FREE.java:39,32: AirPortTemplate cannot be resolved to a type [12.06.15 20:25:17:672] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\port\FREE.java:39,54: Ship cannot be resolved to a type [12.06.15 20:25:17:673] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\port\FREE.java:45,28: AirPortTemplate cannot be resolved to a type [12.06.15 20:25:17:675] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\port\FREE.java:45,50: Ship cannot be resolved to a type [12.06.15 20:25:17:676] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\port\REGULAR.java:16,26: AirPortTemplate cannot be resolved to a type [12.06.15 20:25:17:678] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\port\REGULAR.java:38,32: AirPortTemplate cannot be resolved to a type [12.06.15 20:25:17:679] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\port\REGULAR.java:38,54: Ship cannot be resolved to a type [12.06.15 20:25:17:681] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\port\REGULAR.java:44,28: AirPortTemplate cannot be resolved to a type [12.06.15 20:25:17:682] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\port\REGULAR.java:44,50: Ship cannot be resolved to a type [12.06.15 20:25:17:684] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\ship\PLEDGE.java:41,22: Ship cannot be resolved to a type [12.06.15 20:25:17:685] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\ship\PLEDGE.java:78,23: Ship cannot be resolved to a type [12.06.15 20:25:17:686] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\ship\PLEDGE.java:96,24: Ship cannot be resolved to a type [12.06.15 20:25:17:688] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\ship\PLEDGE.java:103,31: Ship cannot be resolved to a type [12.06.15 20:25:17:742] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\ship\REGULAR.java:40,22: Ship cannot be resolved to a type [12.06.15 20:25:17:743] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\ship\REGULAR.java:55,23: Ship cannot be resolved to a type [12.06.15 20:25:17:744] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\ship\REGULAR.java:59,24: Ship cannot be resolved to a type [12.06.15 20:25:17:745] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\airship\ship\REGULAR.java:67,31: Ship cannot be resolved to a type [12.06.15 20:25:18:127] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\npc\model\residences\castle\ChamberlainInstance.java:731,12: PledgePowerType cannot be resolved to a type [12.06.15 20:25:18:129] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\npc\model\residences\castle\ChamberlainInstance.java:737,12: PledgePowerType cannot be resolved to a type [12.06.15 20:25:18:130] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\npc\model\residences\castle\ChamberlainInstance.java:743,12: PledgePowerType cannot be resolved to a type [12.06.15 20:25:18:132] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\npc\model\residences\castle\ChamberlainInstance.java:749,12: PledgePowerType cannot be resolved to a type [12.06.15 20:25:18:134] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\npc\model\residences\castle\DoormanInstance.java:107,9: PledgePowerType cannot be resolved to a type [12.06.15 20:25:18:137] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\npc\model\residences\clanhall\DoormanInstance.java:19,9: PledgePowerType cannot be resolved to a type [12.06.15 20:25:18:140] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\npc\model\residences\clanhall\ManagerInstance.java:35,12: PledgePowerType cannot be resolved to a type [12.06.15 20:25:18:142] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\npc\model\residences\clanhall\ManagerInstance.java:41,12: PledgePowerType cannot be resolved to a type [12.06.15 20:25:18:145] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\npc\model\residences\clanhall\ManagerInstance.java:47,12: PledgePowerType cannot be resolved to a type [12.06.15 20:25:18:146] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\npc\model\residences\clanhall\ManagerInstance.java:53,12: PledgePowerType cannot be resolved to a type [12.06.15 20:25:18:155] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\npc\model\residences\fortress\DoormanInstance.java:62,9: PledgePowerType cannot be resolved to a type [12.06.15 20:25:18:161] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\npc\model\residences\fortress\ManagerInstance.java:102,12: PledgePowerType cannot be resolved to a type [12.06.15 20:25:18:162] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\npc\model\residences\fortress\ManagerInstance.java:108,12: PledgePowerType cannot be resolved to a type [12.06.15 20:25:18:172] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\npc\model\residences\fortress\ManagerInstance.java:114,12: PledgePowerType cannot be resolved to a type [12.06.15 20:25:18:174] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\npc\model\residences\fortress\ManagerInstance.java:120,12: PledgePowerType cannot be resolved to a type [12.06.15 20:25:19:596] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\BlacksmithMammon.java:30,10: The method Shout(java.lang.String) in the type l2p.gameserver.model.instances.NpcInstance is not applicable for the arguments (int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:19:623] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\CabaleBuffer.java:59,10: The method Say(java.lang.String) in the type l2p.gameserver.model.instances.NpcInstance is not applicable for the arguments (int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:19:625] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\CabaleBuffer.java:91,15: The method Say(java.lang.String) in the type l2p.gameserver.model.instances.NpcInstance is not applicable for the arguments (int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:19:626] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\CabaleBuffer.java:100,15: The method Say(java.lang.String) in the type l2p.gameserver.model.instances.NpcInstance is not applicable for the arguments (int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:19:627] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\CabaleBuffer.java:113,15: The method Say(java.lang.String) in the type l2p.gameserver.model.instances.NpcInstance is not applicable for the arguments (int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:19:629] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\CabaleBuffer.java:122,15: The method Say(java.lang.String) in the type l2p.gameserver.model.instances.NpcInstance is not applicable for the arguments (int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:19:630] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\CabaleBuffer.java:138,15: The method Say(java.lang.String) in the type l2p.gameserver.model.instances.NpcInstance is not applicable for the arguments (int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:19:632] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\CabaleBuffer.java:147,15: The method Say(java.lang.String) in the type l2p.gameserver.model.instances.NpcInstance is not applicable for the arguments (int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:19:634] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\CabaleBuffer.java:160,15: The method Say(java.lang.String) in the type l2p.gameserver.model.instances.NpcInstance is not applicable for the arguments (int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:19:635] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\CabaleBuffer.java:169,15: The method Say(java.lang.String) in the type l2p.gameserver.model.instances.NpcInstance is not applicable for the arguments (int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:19:772] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\custom\FreyaEventAI.java:56,11: The method Say(java.lang.String) in the type l2p.gameserver.model.instances.NpcInstance is not applicable for the arguments (int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:19:775] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\custom\FreyaEventAI.java:60,11: The method Say(java.lang.String) in the type l2p.gameserver.model.instances.NpcInstance is not applicable for the arguments (int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:19:844] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\door\ResidenceDoor.java:9,8: The import l2p.gameserver.model.pledge.components cannot be resolved [12.06.15 20:25:19:962] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\door\ResidenceDoor.java:30,119: The method GetPledgePower() is undefined for the type l2p.gameserver.model.Player [12.06.15 20:25:19:966] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\door\ResidenceDoor.java:30,138: PledgePowerType cannot be resolved [12.06.15 20:25:19:967] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\door\ResidenceDoor.java:30,185: PledgePowerType cannot be resolved [12.06.15 20:25:20:297] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\FortuneBug.java:60,11: The method Say(java.lang.String) in the type l2p.gameserver.model.instances.NpcInstance is not applicable for the arguments (int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:20:301] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\FortuneBug.java:146,11: The method Say(java.lang.String) in the type l2p.gameserver.model.instances.NpcInstance is not applicable for the arguments (int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:20:304] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\FortuneBug.java:203,12: The method Say(java.lang.String) in the type l2p.gameserver.model.instances.NpcInstance is not applicable for the arguments (int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:20:305] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\FortuneBug.java:206,12: The method Say(java.lang.String) in the type l2p.gameserver.model.instances.NpcInstance is not applicable for the arguments (int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:20:307] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\FortuneBug.java:209,12: The method Say(java.lang.String) in the type l2p.gameserver.model.instances.NpcInstance is not applicable for the arguments (int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:20:308] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\FortuneBug.java:212,12: The method Say(java.lang.String) in the type l2p.gameserver.model.instances.NpcInstance is not applicable for the arguments (int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:20:309] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\FortuneBug.java:215,12: The method Say(java.lang.String) in the type l2p.gameserver.model.instances.NpcInstance is not applicable for the arguments (int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:20:310] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\FortuneBug.java:218,12: The method Say(java.lang.String) in the type l2p.gameserver.model.instances.NpcInstance is not applicable for the arguments (int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:21:180] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\hellbound\TowerOfInfinitumMonster.java:4,8: The import l2p.gameserver.instancemanager.TowerOfInfinitumManager cannot be resolved [12.06.15 20:25:21:184] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\hellbound\TowerOfInfinitumMonster.java:25,4: TowerOfInfinitumManager cannot be resolved [12.06.15 20:25:21:769] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:7,8: The import l2p.gameserver.model.pledge.components cannot be resolved [12.06.15 20:25:21:772] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:8,8: The import l2p.gameserver.objects cannot be resolved [12.06.15 20:25:21:781] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:9,8: The import l2p.gameserver.objects cannot be resolved [12.06.15 20:25:21:783] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:42,17: The method TALKED(l2p.gameserver.model.Player) of type ai.pts.airship_npc must override or implement a supertype method [12.06.15 20:25:21:785] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:46,11: The method ShowPage(l2p.gameserver.model.Player, java.lang.String) is undefined for the type l2p.gameserver.model.instances.NpcInstance [12.06.15 20:25:21:786] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:48,11: The method ShowPage(l2p.gameserver.model.Player, java.lang.String) is undefined for the type l2p.gameserver.model.instances.NpcInstance [12.06.15 20:25:21:787] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:52,17: The method CREATED() of type ai.pts.airship_npc must override or implement a supertype method [12.06.15 20:25:21:789] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:56,69: AirPortType cannot be resolved to a variable [12.06.15 20:25:21:790] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:58,69: AirPortType cannot be resolved to a variable [12.06.15 20:25:21:791] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:62,17: The method MENU_SELECTED(l2p.gameserver.model.Player, int, int) of type ai.pts.airship_npc must override or implement a supertype method [12.06.15 20:25:21:792] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:67,26: The method GetPledge(l2p.gameserver.model.Player) is undefined for the type l2p.gameserver.model.instances.NpcInstance [12.06.15 20:25:21:793] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:72,16: The method getYongmaType() is undefined for the type l2p.gameserver.model.Player [12.06.15 20:25:21:795] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:72,35: YongmaType cannot be resolved to a variable [12.06.15 20:25:21:795] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:73,14: The method GetOnAirShip(l2p.gameserver.model.Player) is undefined for the type l2p.gameserver.model.instances.NpcInstance [12.06.15 20:25:21:796] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:75,14: The method ShowSystemMessage(l2p.gameserver.model.Player, int) is undefined for the type l2p.gameserver.model.instances.NpcInstance [12.06.15 20:25:21:797] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:78,13: The method ShowSystemMessage(l2p.gameserver.model.Player, int) is undefined for the type l2p.gameserver.model.instances.NpcInstance [12.06.15 20:25:21:798] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:84,40: PledgePowerType cannot be resolved to a variable [12.06.15 20:25:21:799] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:90,19: The method IsOccupiedPlatform(byte) is undefined for the type l2p.gameserver.model.instances.NpcInstance [12.06.15 20:25:21:800] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:92,16: The method OwnItemCount(l2p.gameserver.model.Player, int) is undefined for the type l2p.gameserver.ai.AI [12.06.15 20:25:21:801] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:93,18: The method SummonAirShip(l2p.gameserver.model.Player, byte, byte) is undefined for the type l2p.gameserver.model.instances.NpcInstance [12.06.15 20:25:21:804] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:95,50: The method MakeFString(int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) in the type l2p.gameserver.ai.AI is not applicable for the arguments (l2p.gameserver.model.Player, int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:21:805] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:98,49: The method MakeFString(int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) in the type l2p.gameserver.ai.AI is not applicable for the arguments (l2p.gameserver.model.Player, int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:21:807] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:103,14: The method ShowSystemMessage(l2p.gameserver.model.Player, int) is undefined for the type l2p.gameserver.model.instances.NpcInstance [12.06.15 20:25:21:809] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:106,45: The method MakeFString(int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) in the type l2p.gameserver.ai.AI is not applicable for the arguments (l2p.gameserver.model.Player, int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:21:811] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:112,17: The method airship_count() is undefined for the type l2p.gameserver.model.pledge.Clan [12.06.15 20:25:21:813] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:113,46: The method MakeFString(int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) in the type l2p.gameserver.ai.AI is not applicable for the arguments (l2p.gameserver.model.Player, int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:21:814] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:114,17: The method OwnItemCount(l2p.gameserver.model.Player, int) is undefined for the type l2p.gameserver.ai.AI [12.06.15 20:25:21:815] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:115,14: The method BuyAirShip(l2p.gameserver.model.Player, byte) is undefined for the type l2p.gameserver.model.instances.NpcInstance [12.06.15 20:25:21:816] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:117,46: The method MakeFString(int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) in the type l2p.gameserver.ai.AI is not applicable for the arguments (l2p.gameserver.model.Player, int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:21:818] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:120,45: The method MakeFString(int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) in the type l2p.gameserver.ai.AI is not applicable for the arguments (l2p.gameserver.model.Player, int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:21:820] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:126,17: The method ON_AIRSHIP_EVENT(byte) of type ai.pts.airship_npc must override or implement a supertype method [12.06.15 20:25:21:821] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:132,12: The method Shout(java.lang.String) in the type l2p.gameserver.model.instances.NpcInstance is not applicable for the arguments (int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:21:822] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:134,12: The method Shout(java.lang.String) in the type l2p.gameserver.model.instances.NpcInstance is not applicable for the arguments (int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:21:824] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:139,12: The method Shout(java.lang.String) in the type l2p.gameserver.model.instances.NpcInstance is not applicable for the arguments (int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:21:825] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:141,12: The method Shout(java.lang.String) in the type l2p.gameserver.model.instances.NpcInstance is not applicable for the arguments (int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:21:826] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\airship_npc.java:144,11: The method Shout(java.lang.String) in the type l2p.gameserver.model.instances.NpcInstance is not applicable for the arguments (int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:21:849] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\default_npc.java:18,17: The method TALK_SELECTED(l2p.gameserver.model.Player) of type ai.pts.default_npc must override or implement a supertype method [12.06.15 20:25:21:850] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\pts\default_npc.java:21,10: The method ShowPage(l2p.gameserver.model.Player, java.lang.String) is undefined for the type l2p.gameserver.model.instances.NpcInstance [12.06.15 20:25:21:899] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\residences\castle\Venom.java:25,14: The method Shout(java.lang.String) in the type l2p.gameserver.model.instances.NpcInstance is not applicable for the arguments (int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:21:901] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\residences\castle\Venom.java:33,14: The method Shout(java.lang.String) in the type l2p.gameserver.model.instances.NpcInstance is not applicable for the arguments (int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:21:908] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\residences\clanhall\AlfredVonHellmann.java:41,14: The method Shout(java.lang.String) in the type l2p.gameserver.model.instances.NpcInstance is not applicable for the arguments (int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:21:910] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\residences\clanhall\AlfredVonHellmann.java:53,14: The method Shout(java.lang.String) in the type l2p.gameserver.model.instances.NpcInstance is not applicable for the arguments (int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:21:915] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\residences\clanhall\GiselleVonHellmann.java:42,14: The method Shout(java.lang.String) in the type l2p.gameserver.model.instances.NpcInstance is not applicable for the arguments (int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) [12.06.15 20:25:21:917] ERROR compiler.Compiler: D:\laveo2\build\dist\gameserver\data\scripts\ai\residences\clanhall\GiselleVonHellmann.java:55,14: The method Shout(java.lang.String) in the type l2p.gameserver.model.instances.NpcInstance is not applicable for the arguments (int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) AIRPORT.java package airship.area; import l2p.gameserver.area.AirshipArea; import l2p.gameserver.data.xml.template.AirshipTemplate.AirShipAreaTemplate; import l2p.gameserver.model.Player; import l2p.gameserver.objects.PledgeShip; import l2p.gameserver.objects.Ship; import l2p.gameserver.serverpackets.SystemMessage; /** * @author PaInKiLlEr */ public class AIRPORT extends AirshipArea { public AIRPORT(AirShipAreaTemplate template) { super(template); } @Override public void doEnter(Ship ship) { super.doEnter(ship); // Сначало покажем всем пассажирам месагу, потом только всё остальное, порядок важен if(ship.getPassenger() != null && !ship.getPassenger().isEmpty()) { for(Player player : ship.getPassenger()) player.sendPacket(new SystemMessage(2717)); } // Добавим задание припарковаться к порту ship.getDesire().AddAirportToDesire(Integer.parseInt(getTemplate().getAreaType()[1]), 10000); // Порт обновился после выдачи задания препарковаться, теперь показываем ролик игрокам for(Player player : ship.getPassenger()) player.showQuestMovie(((PledgeShip) ship).getPlat().getOffPos().get(3)); } @Override public void doLeave(Ship ship) { super.doLeave(ship); } } Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты
Elione 265 Опубликовано 12 июня, 2015 Откройте исходник в любой IDE и она покажет вам все ошибки. Правда судя по таким вопросам - самостоятельно вы их не исправите. Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты
straikmen 18 Опубликовано 13 июня, 2015 Проблема актуальна. Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты