xxPaNtHeRxx Posted May 15, 2020 Posted May 15, 2020 On 5/11/2020 at 12:59 AM, AndreEsteves said: Kara Vote SQL - Fixed last_vote_kara.sql Someone know how to fix queen ant heal? heal or hp? have half hp? Quote
addx20 Posted May 17, 2020 Posted May 17, 2020 (edited) To fix the services button is easy..Open Eclpise and then Just open services.community and search for ''CommunityNpcs'' after that search if ("bbsgetfav".equals(cmd) || "bbsnpcs".equals(cmd)) { sendFileToPlayer(player, "bbs_npcs.htm", true); return; and UNGREEN IT.. Edited May 17, 2020 by addx20 Quote
localbitcoin Posted May 30, 2020 Posted May 30, 2020 On 5/17/2020 at 10:44 PM, addx20 said: To fix the services button is easy..Open Eclpise and then Just open services.community and search for ''CommunityNpcs'' after that search if ("bbsgetfav".equals(cmd) || "bbsnpcs".equals(cmd)) { sendFileToPlayer(player, "bbs_npcs.htm", true); return; and UNGREEN IT.. Well Done thank you! Quote
mcdony Posted June 14, 2020 Posted June 14, 2020 Failed to Load ./config/masterio/RankPvpSystemConfig.properties File. haw to solve this Quote
addx20 Posted June 14, 2020 Posted June 14, 2020 Create a folder in config name masterio and put this inside https://file.io/IiukwceS Quote
mcdony Posted June 14, 2020 Posted June 14, 2020 1 hour ago, addx20 said: Create a folder in config name masterio and put this inside https://file.io/IiukwceS file eror :( Quote
addx20 Posted June 14, 2020 Posted June 14, 2020 1 hour ago, mcdony said: file eror :( https://easyupload.io/gsoa6y Quote
JackCerutti Posted June 20, 2020 Posted June 20, 2020 (edited) Try with this one:RankPvpSystemConfig.properties Edited June 20, 2020 by JackCerutti Quote
-Invoke Posted July 2, 2020 Posted July 2, 2020 Does anyone have the latest daily quests/challenges package ? Quote
lokaosk1000 Posted July 15, 2020 Posted July 15, 2020 [GAMESERVER] INFO Licensed IP 127.0.0.1 INFO Licensed IP Please Contact Ichsan Rinaldi Sjofka [LOGINSERVER] INFO IP: 190.161.xxx.xx Login: kryz Assigned to Proxy: 127.0.0.1 i cant log in any idea? Quote
lokaosk1000 Posted July 15, 2020 Posted July 15, 2020 12 hours ago, lokaosk1000 said: [GAMESERVER] INFO Licensed IP 127.0.0.1 INFO Licensed IP Please Contact Ichsan Rinaldi Sjofka [LOGINSERVER] INFO IP: 190.161.xxx.xx Login: kryz Assigned to Proxy: 127.0.0.1 i cant log in any idea? fixed it Quote
estaz Posted August 13, 2020 Posted August 13, 2020 Could someone help me out with this error? Exception in thread "main" java.lang.NoSuchMethodError: java.nio.ByteBuffer.rewind()Ljava/nio/ByteBuffer; at l2f.gameserver.vote.DDSConverter.buildHeaderDxt1(DDSConverter.java:215) at l2f.gameserver.vote.DDSConverter.convertToDxt1NoTransparency(DDSConverter.java:126) at l2f.gameserver.vote.DDSConverter.convertToDDS(DDSConverter.java:113) at l2f.gameserver.cache.ImagesCache.loadImages(ImagesCache.java:69) at l2f.gameserver.cache.ImagesCache.<init>(ImagesCache.java:57) at l2f.gameserver.cache.ImagesCache$ImagesCacheHolder.<clinit>(ImagesCache.java:308) at l2f.gameserver.cache.ImagesCache.getInstance(ImagesCache.java:303) at l2f.gameserver.GameServer.<init>(GameServer.java:305) at l2f.gameserver.GameServer.main(GameServer.java:617) I've tried all kinds of different java versions to run the gameserver and to compile everything, still throws this one every time. Quote
terryliza Posted October 12, 2020 Posted October 12, 2020 Hello guys, can someone help with a high hit. so I want to and we will proceed with this project. I fixed a few things Quote
terryliza Posted October 12, 2020 Posted October 12, 2020 On 13/08/2020 at 13:06, estaz said: Alguém poderia me ajudar com esse erro? Eu tentei todos os tipos de versões diferentes de java para rodar o gameserver e compilar tudo, ainda jogo isso toda vez. Error Compiler fixed ....... package l2f.commons.compiler; import java.io.File; import java.io.StringWriter; import java.io.Writer; import java.nio.charset.Charset; import java.util.ArrayList; import java.util.Collection; import java.util.List; import java.util.Locale; import javax.tools.Diagnostic; import javax.tools.DiagnosticListener; import javax.tools.JavaCompiler; import javax.tools.JavaFileObject; import javax.tools.StandardJavaFileManager; import org.eclipse.jdt.internal.compiler.tool.EclipseCompiler; import org.eclipse.jdt.internal.compiler.tool.EclipseFileManager; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * ????? ?????????? ??????? Java ??????<br> * ? ???????? ??????????? ???????????? Eclipse Java Compiler * @author G1ta0 */ public class Compiler { private static final Logger _log = LoggerFactory.getLogger(Compiler.class); private static final JavaCompiler javac = new EclipseCompiler(); private final DiagnosticListener<JavaFileObject> listener = new DefaultDiagnosticListener(); private final StandardJavaFileManager fileManager = new EclipseFileManager(Locale.getDefault(), Charset.defaultCharset()); private final MemoryClassLoader memClassLoader = new MemoryClassLoader(); private final MemoryJavaFileManager memFileManager = new MemoryJavaFileManager(this.fileManager, this.memClassLoader); public boolean compile(File... files) { // javac options List<String> options = new ArrayList<String>(); options.add("-Xlint:all"); options.add("-warn:none"); // options.add("-g:none"); options.add("-g"); options.add("-source"); options.add("1.8"); // options.add("-deprecation"); Writer writer = new StringWriter(); JavaCompiler.CompilationTask compile = javac.getTask(writer, this.memFileManager, this.listener, options, null, this.fileManager.getJavaFileObjects(files)); if (compile.call()) { return true; } return false; } public boolean compile(Collection<File> files) { return this.compile(files.toArray(new File[files.size()])); } public MemoryClassLoader getClassLoader() { return this.memClassLoader; } private class DefaultDiagnosticListener implements DiagnosticListener<JavaFileObject> { @Override public void report(Diagnostic<? extends JavaFileObject> diagnostic) { _log.error(diagnostic.getSource().getName() + (diagnostic.getPosition() == Diagnostic.NOPOS ? "" : ":" + diagnostic.getLineNumber() + "," + diagnostic.getColumnNumber()) + ": " + diagnostic.getMessage(Locale.getDefault())); } } } Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.