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.
On April 11 at 18:00 server time (GMT +2), the open beta test of our upcoming Chronicle 2 update will begin!
We invite everyone to join, explore the world of C2 ahead of the official launch, and share your feedback.
📌 Players who find bugs during OBT will receive CoL as a reward:
- 1 CoL for each staticmeshes bug For example, passing through textures, stairs, etc.
- 2 CoL or more for server-side bugs (depending on severity).
You can report bugs via support on Discord or on the forum.
Open beta testing will last approximately until 15.04 20:00 (GMT +2).
Your activity and input will help us improve the game!
The download links will be available later.
Question
scraw
Hello there.. i have a java problem..
I try to insert an AUTO-RESTART CODE ,everything was alright untill now.im my config it gives error to a code here it is
public static void loadCustomConfig()
{
final String BYEXCALIBUR = FService.EXCALIBUR_FILE;
try
{
Properties CustomSettings = new Properties();
HERE~> InputStream is = new FileInputStream(new File(BYEXCALIBUR));
CustomSettings.load(is);
is.close();
RESTART_BY_TIME_OF_DAY = Boolean.parseBoolean(CustomSettings.getProperty("EnableRestartSystem", "false"));
RESTART_SECONDS = Integer.parseInt(CustomSettings.getProperty("RestartSeconds", "360"));
RESTART_INTERVAL_BY_TIME_OF_DAY = CustomSettings.getProperty("RestartByTimeOfDay", "20:00").split(",");
{
HERE~> e.printStackTrace();
throw new Error("Failed to Load " + BYEXCALIBUR + " File.") ; <~HERE
}
i found the code here :
https://pastebin.com/T2j9dagL
I Use l2jfrozen as well but rev 1132.
13 answers to this question
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.