Extreamer Posted August 6, 2013 Posted August 6, 2013 So im firing up login server. Thats great. Im firing up Gameserver... well... Checked all the configs, through compile i get no errors. I use Stable L2j core hi5, and unstable l2j dp hi5 , would that be a reason? Here is a little Print screen.
0 xdem Posted August 6, 2013 Posted August 6, 2013 config error dude, keep a backup of ur configs replace them with some clean and test it
0 Extreamer Posted August 6, 2013 Author Posted August 6, 2013 The fact is on my compile, everything is nice and smooth. No errors during compile
0 SweeTs Posted August 6, 2013 Posted August 6, 2013 ifconfig.xml doesnt exist Missing file. Edit: Oh my, as I see it uses automatic configs, so it's not the case(?) :D
0 Matim Posted August 6, 2013 Posted August 6, 2013 Show us line 2421 from Config.java - there is NPE as you can see, there should be default value, but something is missing.
0 Extreamer Posted August 7, 2013 Author Posted August 7, 2013 Alright, i will attach my config java here. There you go http://www.mediafire.com/?9r0eczbratkt6du
0 SweeTs Posted August 7, 2013 Posted August 7, 2013 Use pastebin.com next time, it's more flexible :D ALT_ALLOW_REFINE_PVP_ITEM = Boolean.parseBoolean(L2JModSettings.getProperty("AltAllowRefinePVPItem", "False")); That's the line. I don't like the place where it is (not sure if it's the case, and mby it shoud be there :o). Try to move it a bit lower, into L2JModSettings load and see what happens :D // Load L2JMod L2Properties file (if exists) L2Properties L2JModSettings = new L2Properties(); final File l2jmods = new File(L2JMOD_CONFIG_FILE); try (InputStream is = new FileInputStream(l2jmods)) { L2JModSettings.load(is); } catch (Exception e) { _log.log(Level.SEVERE, "Error while loading L2JMod settings!", e); } +ALT_ALLOW_REFINE_PVP_ITEM = Boolean.parseBoolean(L2JModSettings.getProperty("AltAllowRefinePVPItem", "False")); ANNOUNCE_BOSS_SPAWN = Boolean.parseBoolean(L2JModSettings.getProperty("AnnounceBossSpawn", "false"));
0 Extreamer Posted August 7, 2013 Author Posted August 7, 2013 Problem is solved, thank you sweety, the config just wasnt in the right place i guess :)
Question
Extreamer
So im firing up login server. Thats great. Im firing up Gameserver... well...
Checked all the configs, through compile i get no errors.
I use Stable L2j core hi5, and unstable l2j dp hi5 , would that be a reason?
Here is a little Print screen.
10 answers to this question
Recommended Posts