⏳ L2Elixir Open Beta goes live in less than 4 hours!
This Saturday, November 15th at 21:00 (UTC +2), the gates open for our biggest testing phase!
🔥 Don’t miss the first 30 minutes — exclusive rewards await!
A special NPC, “The Judge”, will appear in Giran, offering unique bonuses to early participants:
🏅 Open Beta Rewards:
- The first 2 players who talk to The Judge → Premium Account for Launch
- Another 2 random players who interact → Premium Account
- Everyone who speaks to the NPC within the first 30 minutes → Legendary Starter Pack for all characters on launch day (Nov 28th, 2025)
📌 The NPC will spawn exactly at 21:00 (UTC+2).
⏱️ Follow the countdown on our website — the hype is real!
Create your account & download the Updater to be ready!
🔗 https://l2elixir.org/connect/
💬 Discord: https://discord.gg/5ydPHvhbxs
Question
CrazyDeagle
Hello everyone i have aproblem when i try add Laike system faction
i try to add it on freya
Index: java/net/sf/l2j/gameserver/model/olympiad/OlympiadGame.java =================================================================== --- java/net/sf/l2j/gameserver/model/olympiad/OlympiadGame.java (revision 3695) +++ java/net/sf/l2j/gameserver/model/olympiad/OlympiadGame.java (working copy) @@ -34,6 +34,7 @@ import net.sf.l2j.gameserver.model.actor.instance.L2CubicInstance; import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance; import net.sf.l2j.gameserver.model.actor.instance.L2PetInstance; +import net.sf.l2j.gameserver.model.itemcontainer.Inventory; import net.sf.l2j.gameserver.model.olympiad.Olympiad.COMP_TYPE; import net.sf.l2j.gameserver.network.SystemMessageId; import net.sf.l2j.gameserver.network.clientpackets.Say2; @@ -47,6 +48,7 @@ import net.sf.l2j.gameserver.network.serverpackets.SystemMessage; import net.sf.l2j.gameserver.templates.StatsSet; import net.sf.l2j.gameserver.templates.chars.L2NpcTemplate; +import net.sf.l2j.gameserver.templates.item.L2Item; import net.sf.l2j.util.L2FastList; /** @@ -391,12 +393,14 @@ { _playerOne.sendPacket(new ExOlympiadMatchEnd()); _playerOne.teleToLocation(x1, y1, z1, true); + _playerOne.setTeam(_playerOne.getFactionId()); } if (_playerTwo != null) { _playerTwo.sendPacket(new ExOlympiadMatchEnd()); _playerTwo.teleToLocation(x2, y2, z2, true); + _playerTwo.setTeam(_playerTwo.getFactionId()); } }Not found in freya dont have anymore OlympiadGame.java
so i try to open a gracia final source
and this code is below this
On freya like it
OlympiadgameNormal.java
@Override protected final void portPlayersBack() { if (_playerOne.player != null && !_playerOne.defaulted && !_playerOne.disconnected) portPlayerBack(_playerOne.player); if (_playerTwo.player != null && !_playerTwo.defaulted && !_playerTwo.disconnected) portPlayerBack(_playerTwo.player); }so i add it
&& !_playerTwo.getFactionId()) and remove the ) in this
&& !_playerTwo.disconnected)
i make the same for the one and get error on compile... who can help me thanks you
4 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now