Dual Boxing anti-feed.

Support for the latest build of L2J Server, get help here with installations, upgrades, problems.
Do not post bugs reports here, use viewforum.php?f=77 instead.
There is no support for other server builds than the official provided by l2jserver.com
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
User avatar
memodorial
Posts: 36
Joined: Mon May 16, 2011 11:56 am
Contact:

Dual Boxing anti-feed.

Post by memodorial »

Can someone please move this post to Bug Reports topic? I do not have enough posts :/

There is a bug with a config named AntiFeedDualbox in l2jmods.properties file:
If it turned on, and if you'll kill your 2nd character for a 1st time, then you will not pass the anti-feed system.
However, if you'll kill your character for a 2nd (or 3,4,5.....) time('s) then the system will not check it for dual boxing.

Fix:

Code: Select all

### Eclipse Workspace Patch 1.0#P L2J_ServerIndex: java/com/l2jserver/gameserver/instancemanager/AntiFeedManager.java===================================================================--- java/com/l2jserver/gameserver/instancemanager/AntiFeedManager.java  (revision 5662)+++ java/com/l2jserver/gameserver/instancemanager/AntiFeedManager.java  (working copy)@@ -73,28 +73,28 @@        if (targetPlayer == null)            return false;        +       if (Config.L2JMOD_ANTIFEED_DUALBOX && attacker != null)+       {+           final L2PcInstance attackerPlayer = attacker.getActingPlayer();+           if (attackerPlayer == null)+               return false;+           +           final L2GameClient targetClient = targetPlayer.getClient();+           final L2GameClient attackerClient = attackerPlayer.getClient();+           if (targetClient == null+                   || attackerClient == null+                   || targetClient.isDetached()+                   || attackerClient.isDetached())+               // unable to check ip address+               return !Config.L2JMOD_ANTIFEED_DISCONNECTED_AS_DUALBOX;+           +           return !targetClient.getConnectionAddress().equals(attackerClient.getConnectionAddress());+       }+               if (Config.L2JMOD_ANTIFEED_INTERVAL > 0                && _lastDeathTimes.containsKey(targetPlayer.getObjectId()))            return (System.currentTimeMillis() - _lastDeathTimes.get(targetPlayer.getObjectId())) > Config.L2JMOD_ANTIFEED_INTERVAL;            -           if (Config.L2JMOD_ANTIFEED_DUALBOX && attacker != null)-           {-               final L2PcInstance attackerPlayer = attacker.getActingPlayer();-               if (attackerPlayer == null)-                   return false;-               -               final L2GameClient targetClient = targetPlayer.getClient();-               final L2GameClient attackerClient = attackerPlayer.getClient();-               if (targetClient == null-                       || attackerClient == null-                       || targetClient.isDetached()-                       || attackerClient.isDetached())-                   // unable to check ip address-                   return !Config.L2JMOD_ANTIFEED_DISCONNECTED_AS_DUALBOX;-               -               return !targetClient.getConnectionAddress().equals(attackerClient.getConnectionAddress());-           }-                       return true;    }     
new List of Top Game Servers Online is under development. We are looking for content writers (topic: online games)
User avatar
memodorial
Posts: 36
Joined: Mon May 16, 2011 11:56 am
Contact:

Re: Dual Boxing anti-feed.

Post by memodorial »

any answer?
new List of Top Game Servers Online is under development. We are looking for content writers (topic: online games)
User avatar
Zoey76
L2j Inner Circle
L2j Inner Circle
Posts: 7008
Joined: Tue Aug 11, 2009 3:36 am

Re: Dual Boxing anti-feed.

Post by Zoey76 »

//Summon UnAfraid
Powered by Eclipse 4.34 🌌 | Eclipse Temurin 21 ☕ | MariaDB 11.3.2 🗃️ | L2J Server 2.6.3.0 - High Five 🚀

🔗 Join our Discord! 🎮💬
Ghurdyl
Posts: 55
Joined: Tue Jun 03, 2008 4:52 pm
Location: Hannut, Belgium

Bug in Olympiad IP anti-feed

Post by Ghurdyl »

If you want to receive support we need this info to help you properly.
L2J Revision Number:5630
L2JDP Revision Number:9126

Hello,

I have enabled the IP restriction on Olympiad to have only 1 player per IP allowed :

L2Jmod.properties :
DualboxCheckMaxOlympiadParticipantsPerIP = 1

But I have seen players of the same IP fighting.
I tried to connect 3 accounts on the same computer and I get the message "Maximum 1 olympiad participant(s) per IP address allowed".
And my characters weren't registered.
Looks like it works, but there's a hack, no doubt of it!

I think that players who bypass the IP restriction are first registering and doing one match and once they're back the two character can register.
I could not test my theory yet but as I'm quite worried about this issue I wanted to share it with you.

I'm also sure it's not 3rd party hack tool, VPN or anything like this. The player who reported this to me is honest and discovered it by hazard, but she could not tell me exactly how she did.

One last info, our players only do "class irrelevant individual matches".

If anyone could help me in this I'd be very thankful :D
~Ghurdyl~
"If you give a man a fire, he'll be warm for a day. If you set a man on fire, he'll be warm for the rest of his life" :)
Post Reply