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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock