Jump to content

Recommended Posts

  • 5 months later...
Posted

for l2j can be something like that, or you can make own flood protector:

 

Index: java/com/l2jserver/gameserver/network/clientpackets/MoveBackwardToLocation.java
===================================================================
--- java/com/l2jserver/gameserver/network/clientpackets/MoveBackwardToLocation.java	(revision 3701)
+++ java/com/l2jserver/gameserver/network/clientpackets/MoveBackwardToLocation.java	(working copy)
@@ -82,6 +82,10 @@
		L2PcInstance activeChar = getClient().getActiveChar();
		if (activeChar == null)
			return;
+		
+		if (!activeChar.getFloodProtectors().getServerBypass().tryPerformAction("protected_packets"))
+			return;
+		
		// Correcting targetZ from floor level to head level (?)
		// Client is giving floor level as targetZ but that floor level doesn't
		// match our current geodata and teleport coords as good as head level! 

working
  • 2 months 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..