Jump to content
  • 0

Olympiad bug (Wyatt)


Question

Posted

I changed the rev from stable to the unst. and tried to get the olympiad system u gave me working again and im getting this error:

 

    [javac] C:\Users\Luna\Desktop\L2J Server\workspace\L2J_Server_BETA\java\com\l2jserver\Config.java:2673: error: cannot find symbol

    [javac] String[] Split = Olympiad.getProperty("AltOlyEndDate", "1").split(",");

    [javac]                         ^

    [javac]  symbol:  method getProperty(String,String)

    [javac]  location: variable Olympiad of type PropertiesParser

    [javac] C:\Users\Luna\Desktop\L2J Server\workspace\L2J_Server_BETA\java\com\l2jserver\Config.java:2679: error: cannot find symbol

    [javac] Split = Olympiad.getProperty("AltOlyEndHour", "12:00:00").split(":");

    [javac]                 ^

    [javac]  symbol:  method getProperty(String,String)

    [javac]  location: variable Olympiad of type PropertiesParser

    [javac] 2 errors

 

BUILD FAILED

3 answers to this question

Recommended Posts

  • 0
Posted

2673 String[] Split = Olympiad.getProperty("AltOlyEndDate", "1").split(",");

2674 ALT_OLY_END_DATE = new int[split.length];

2675 for (int i = 0; i < Split.length; i++)

2676 {

2677 ALT_OLY_END_DATE = Integer.parseInt(Split);

2678 }

2679 Split = Olympiad.getProperty("AltOlyEndHour", "12:00:00").split(":");

2680 for (int i = 0; i < 3; i++)

2681 {

2682 ALT_OLY_END_HOUR = Integer.parseInt(Split);

2683 }

 

 

Those are the lines of config.java

  • 0
Posted

Instead of

String[] Split = Olympiad.getProperty("AltOlyEndDate", "1").split(",");
  Split = Olympiad.getProperty("AltOlyEndHour", "12:00:00").split(":");

should be

String[] Split = Olympiad.getString("AltOlyEndDate", "1").split(",");
  Split = Olympiad.getString("AltOlyEndHour", "12:00:00").split(":");

 

P.S: I don't recommend you to use unstable.

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.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...