Jump to content

[Share]Dual-Box (Anti)


Recommended Posts

So, if I understood correctly, you create a java file named "custom" in model.

 

I get these errors though:

 

 

    public class ProtectionNetwork

 

It says "The public type ProtectionNetwork must be defined in its own file." And it gives me the option to rename the file to "ProtectionNetwork".



Then I get another error here:

 

player.getClient().getConnection().getSocketChannel().socket().getInetAddress().getHostAddress();

 

It says "The method GetSocketChannel() is undefined for the type MMOConnection<L2GameServerClient>" and suggests "Add cast to method receiver."

 

Sorry for bumping.

Edited by Tristis
Link to comment
Share on other sites

No, you dont.. You create ProtectionNetwork.java file inside the location (../gameserver/model/)

 

 

player.getClient().getConnection().getInetAddress().getHostAddress();
Link to comment
Share on other sites

And this:

 

+        if (ProtectionDualBox.check(activeChar))
+            ProtectionDualBox.disc(activeChar);

 

Should be changed to this:

 

+        if (ProtectionNetwork.check(activeChar))
+                ProtectionNetwork.disc(activeChar);

 

Right?

Link to comment
Share on other sites

  • 5 years later...
On 11/2/2014 at 7:54 PM, Tristis said:

And this:

 

+        if (ProtectionDualBox.check(activeChar))
+            ProtectionDualBox.disc(activeChar);

 

Should be changed to this:

 

+        if (ProtectionNetwork.check(activeChar))
+                ProtectionNetwork.disc(activeChar);

 

Right?

i build ok but when i login alway all disconnected from server even 1st charecter also got disconnect

my code...

 

/*
 * Copyright (C) 2004-2020 L2J Server
 * 
 * This file is part of L2J Server.
 * 
 * L2J Server is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * L2J Server is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */
/**
 * @author User
 *
 */
package com.l2jserver.gameserver.model;

import com.l2jserver.gameserver.ThreadPoolManager;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.network.clientpackets.Say2;
import com.l2jserver.gameserver.network.serverpackets.CreatureSay;

/**
 * @author xAddytzu
 */
public class ProtectionNetwork
{
    public static void disc(final L2PcInstance player)
    {
        player.sendPacket(new CreatureSay(1, Say2.HERO_VOICE, "SYSTEM", "You cannot play with dualbox."));
        ThreadPoolManager.getInstance().scheduleGeneral(() -> player.closeNetConnection(false), 20000);
    }
    
    public static boolean check(L2PcInstance player)
    {
        boolean loggedz0r = false;
        for (L2PcInstance playerz0r : L2World.getInstance().getPlayers())
        {
            String client = first(playerz0r);
            String client1 = second(player);
            if (client.equalsIgnoreCase(client1))
            {
                loggedz0r = true;
            }
        }
        return loggedz0r;
    }
    
    private static String first(L2PcInstance player)
    {
        return second(player).toString();
    }
    
    private static String second(L2PcInstance player)
    {
        try
        {
            player.getClient().getConnection().getInetAddress().getHostAddress();
        }
        catch (Throwable t)
        {
        }
        return null;
    }
}

Link to comment
Share on other sites

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
Reply to this topic...

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