Jump to content

Recommended Posts

Posted

Well , There Are Some Server That "Suffer" From This Exploit..Here's The Fix.

 

 

go to net.sf.l2j.gameserver.clientpackets.RequestGiveItemToPet.java

 

First Go The Imports. And After This Line :


import net.sf.l2j.gameserver.serverpackets.SystemMessage;

 

Paste These :

import net.sf.l2j.gameserver.util.IllegalPlayerAction;
import net.sf.l2j.gameserver.util.Util; 

 

Open It And Find :

 

        if (Config.GM_DISABLE_TRANSACTION && player.getAccessLevel() >= Config.GM_TRANSACTION_MIN && player.getAccessLevel() <= Config.GM_TRANSACTION_MAX)
        {
            player.sendMessage("Transactions are disable for your Access Level");
            player.sendPacket(new SystemMessage(SystemMessageId.NOTHING_HAPPENED));
            return;
        }

 

And Paste This Right After It:

 

        if (player.getActiveEnchantItem() != null)
        {
           Util.handleIllegalPlayerAction(player,"Player "+player.getName()+" Tried To Use Enchant Exploit And Got Banned!", IllegalPlayerAction.PUNISH_KICKBAN);
           return;
        } 

 

Then , Find This :

 

        // Alt game - Karma punishment
        if (!Config.ALT_GAME_KARMA_PLAYER_CAN_TRADE && player.getKarma() > 0) return;

 

And Paste This After It :

 

        if (player.getActiveEnchantItem() != null)
        {
           Util.handleIllegalPlayerAction(player,"Player "+player.getName()+" Tried To Use Enchant Exploit And Got Banned!", IllegalPlayerAction.PUNISH_KICKBAN);
           return;
        } 

 

Save It , Compile And You Are Done..

 

Enjoy..!

 

 

 

[DIFF FILES]

 

L2J_Interlude : http://www.4shared.com/file/90115399/250f2ecd/L2J_Interlude_Pet_Enchant_Fix_By2_Stefoulis15.html

 

 

 

L2JFree_Interlude : http://www.4shared.com/file/90115430/a3736866/L2JFree_Interlude_Pet_Enchant_Fix_By_Stefoulis15.html

 

 

L2J-Archid Interlude : http://www.4shared.com/file/90115903/198ff94c/L2J-Archid_Interlude_Pet_Enchant_Fix_By_Stefoulis15.html

 

 

 

 

Posted

hmm good job stefoulis thanks for sharing!! well, this will ban people who give enchanted items to the pet. what about if people just wana save the items and wont use the enchant exploit?

 

what about this?:

 

if (player.getActiveEnchantItem() != null)
	{
		sendPacket(SystemMessageId.ITEM_NOT_FOR_PETS);
		return;
	}

 

Posted

hmm good job stefoulis thanks for sharing!! well, this will ban people who give enchanted items to the pet. what about if people just wana save the items and wont use the enchant exploit?

 

what about this?:

 

if (player.getActiveEnchantItem() != null)
	{
		sendPacket(SystemMessageId.ITEM_NOT_FOR_PETS);
		return;
	}

 

 

Well , Maybe. But I Personally , Wanna Be Sure That There Won't Be Exploits.

 

Thanks For The Tip Though.

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



  • Posts

    • Looks like somebody discovered AI recently
    • Added: Server monitoring has been added to the protection dashboard, available for Premium+ plans. Each entry displays: Account — game login. HWID — hardware ID. GSID — the game server the entry belongs to. IP — the player's address. Country — determined by IP, with flag and name. Useful for SEO promotion, do you know where more players come from Status — "Banned" or "OK". Extra windows — how many additional windows are allowed for this HWID beyond the global limit. Last seen — time of last activity.   At the top — a summary: total entries, number banned, time of the last report, and an Online/Offline indicator (based on how fresh the data from the protection is).   Filters and search Search by account, HWID, or IP. Country — select from countries actually present in the data. Game server (GS) — filter by GSID. Period — by last activity date (from / to). Banned only — quick filter for violators. Grouping — collapse data by HWID, IP, or account: one row per key with counts of accounts/HWIDs/IPs and number of entries. Handy for catching multi-accounters (many accounts from one HWID) and suspicious IPs.   Ban / Unban — banning by HWID blocks all accounts on that hardware. The protection will pick up the command within a minute; until applied, a "Pending…" status is shown. Grant windows — set additional windows (+N) for a specific HWID via a convenient selector. Single token per account to link the protection with the dashboard: Generate / Reissue token in one click. Show token — view the current value at any time. The token is stored encrypted. Don't share it with anyone — if compromised, simply reissue it and the old one stops working immediately. In the protection config, you can enable monitoring, insert the token, and change how often data is sent to the protection dashboard.
  • Topics

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