- 0
This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..
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