Jump to content
  • 0

Olympiad in L2JFrozen


Question

6 answers to this question

Recommended Posts

  • 0
Posted

Option 1. Remove the ddos protection

Option 2. Remove the restriction about ip's in olympiad

Option 3. Create a PcIP based restriction

  • 0
Posted

Option 1. Remove the ddos protection

Option 2. Remove the restriction about ip's in olympiad

Option 3. Create a PcIP based restriction

From where can i remove option 2?
  • 0
Posted

From where can i remove option 2?

L2jFrozenInterlude/trunk/gameserver/config/protected/other.properties

AllowDualBoxInOly = True

  • 0
Posted

Already did that.

O.o...

try removing from...

L2jFrozenInterlude/trunk/gameserver/head-src/com/l2jfrozen/gameserver/model/entity/olympiad/Olympiad.java

 

// Olympiad dualbox protection
	if (noble._active_boxes > 1 && !Config.ALLOW_DUALBOX_OLY)
	{
		List<String> players_in_boxes = noble.active_boxes_characters;

		if (players_in_boxes != null && players_in_boxes.size() > 1)
			for (String character_name : players_in_boxes)
			{
				L2PcInstance player = L2World.getInstance().getPlayer(character_name);

				if (player != null && (player.getOlympiadGameId() > 0 || player.isInOlympiadMode() || Olympiad.getInstance().isRegistered(player)))
				{
					noble.sendMessage("You are already participating in Olympiad with another char!");
					return false;
				}
			}
	}

	/** End Olympiad Restrictions */

but it should be the config...

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...