Jump to content

Recommended Posts

Posted

Ok, BSS are definitely not allowed for olys in the l2 official server, and it seems that l2jserver (l2jofficial) won't fix this, so I'll share this little piece of code that can balance the olys again.

 

Edit *your-server-path*\gameserver\data\scripts\handlers\itemhandlers\BlessedSpiritShot.java

 

Find

(row 48) int itemId = item.getItemId();

 

Add after that

		if (activeChar.isInOlympiadMode())
	{
		activeChar.sendPacket(new SystemMessage(SystemMessageId.THIS_ITEM_IS_NOT_AVAILABLE_FOR_THE_OLYMPIAD_EVENT));
		return;
	}

 

That should disable BSS for olys, now for Beasts (Pets) do this

 

Edit *your-server-path*\gameserver\data\scripts\handlers\itemhandlers\BeastSpiritShot.java

 

Find

(row 68) short shotConsumption = activePet.getSpiritShotsPerHit();

 

Add after that

		if (activeOwner.isInOlympiadMode() && itemId == 6647)
	{
		activeOwner.sendPacket(new SystemMessage(SystemMessageId.THIS_ITEM_IS_NOT_AVAILABLE_FOR_THE_OLYMPIAD_EVENT));
		return;
	}

 

I couldn't test the last (for beast bss), but it should work...

 

Good luck!

Posted

nice thnx for sharing

but putting this on oly will need another rework on class balance.

Posted

This is the way it should be.. nothing to change in class balance.

i've tried it before and it makes gladi and paladin OP.

Posted

>.> you forgot the packet xD

anyway all l2j servers have it from c4 to epi.. so.. LOCKED!

 

Later edit: My mistake, Unlocked.

  • 1 year later...

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

Important Information

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