Jump to content

Recommended Posts

Posted

1. In

L2jserver T0:

net.sf.l2j.gameserver.clientpackets.RequestBypassToServer

L2jserver GF \ GE:

com.l2jserver.gameserver.network.clientpackets.RequestBypassToServer

Add imports:

T0:

import java.util.StringTokenizer;
import net.sf.l2j.gameserver.cache.HtmCache;

import net.sf.l2j.gameserver.model.L2Skill;
import net.sf.l2j.gameserver.network.serverpackets.MagicSkillUser;
import net.sf.l2j.gameserver.network.serverpackets.NpcHtmlMessage;
import net.sf.l2j.gameserver.datatables.SkillTable; 

GF\ GE:

import java.util.StringTokenizer;
import com.l2jserver.gameserver.cache.HtmCache;

import com.l2jserver.gameserver.model.L2Skill;
import com.l2jserver.gameserver.network.serverpackets.MagicSkillUser;
import com.l2jserver.gameserver.network.serverpackets.NpcHtmlMessage;
import com.l2jserver.gameserver.datatables.SkillTable; 

2.

In

L2jserver T0:

net.sf.l2j.gameserver.clientpackets.RequestBypassToServer

L2jserver GF \ GE:

com.l2jserver.gameserver.network.clientpackets.RequestBypassToServer

Find:

			else if (_command.startsWith("player_help "))
		{
			playerHelp(activeChar, _command.substring(12));
		} 

Add after

			else if (_command.startsWith("menu_buff"))
		{
			menu_buff(activeChar, _command);
		} 

3. In

L2jserver T0:

net.sf.l2j.gameserver.clientpackets.RequestBypassToServer

L2jserver GF \ GE:

com.l2jserver.gameserver.network.clientpackets.RequestBypassToServer

Add (almost at the bottom):

	private boolean menu_buff(L2PcInstance activeChar, String command)
{
	if (activeChar.isMovementDisabled() || activeChar.isAlikeDead())
		return false;

	if (activeChar.isCursedWeaponEquiped())
	{
		activeChar.sendMessage("Вы не можете взять баф, пока вы носитель проклятого оружия.");
		return false;
	}
	if (activeChar.isInDuel())
	{
		activeChar.sendMessage("Бафаться в дуели запрещено!");
		return false;
	}
	if (activeChar.isInParty() && activeChar.getParty().isInDimensionalRift())
	{
		activeChar.sendMessage("Вы не можете взять баф, пока находитесь в дименшен рифте.");
		return false;
	}
	if (activeChar.isInFunEvent())
	{
		activeChar.sendMessage("На евентах брать баф запрещено.");
		return false;
	}
	if (activeChar.isInOlympiadMode() || activeChar.getOlympiadGameId() != -1)
	{
		activeChar.sendMessage("На олимпе брать баф запрещено!");
		return false;
	}
	if (activeChar.inObserverMode())
	{
		activeChar.sendMessage("Вы не можете бафнуться в этот момент.");
		return false;
	}
        		String htmFile = "data/html/Buff.htm";
        		String htmContent = HtmCache.getInstance().getHtm(htmFile);

            		NpcHtmlMessage Html = new NpcHtmlMessage(1);

            		Html.setHtml(htmContent);
            		activeChar.sendPacket(Html);

		StringTokenizer st = new StringTokenizer(command, " ");
		st.nextToken();
		int skillid=Integer.parseInt(st.nextToken());
		int lvl=Integer.parseInt(st.nextToken());

        		L2Skill skill;
        		skill = SkillTable.getInstance().getInfo(skillid,lvl);
        		skill.getEffects(activeChar, activeChar);
        		activeChar.broadcastPacket(new MagicSkillUser(activeChar, activeChar, skillid, lvl, 1, 0));

		return true;
} 

4. Create Voiced handler:

package net.sf.l2j.gameserver.handler.voicedcommandhandlers;

import net.sf.l2j.gameserver.cache.HtmCache;
import net.sf.l2j.gameserver.handler.IVoicedCommandHandler;
import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
import net.sf.l2j.gameserver.network.serverpackets.NpcHtmlMessage;
//for GF\GE  com.l2jserver

public class Buff implements IVoicedCommandHandler
{
    private static String[]    VOICED_COMMANDS    =    { "buff" };

    public boolean useVoicedCommand(String command, L2PcInstance activeChar, String target)
    {
        String htmFile = "data/html/Buff.htm";
        String htmContent = HtmCache.getInstance().getHtm(htmFile);

        if (htmContent != null)
        {
            NpcHtmlMessage Html = new NpcHtmlMessage(1);

            Html.setHtml(htmContent);
            activeChar.sendPacket(Html);
        }
        else
        {
            activeChar.sendMessage("Missing " + htmFile + " !");
        }

        return true;
    }

    public String[] getVoicedCommandList()
    {
        return VOICED_COMMANDS;
    }
} 

5. Create HTML file in: data/html/Buff.html.

Example: bypass -h menu_buff [skillID] [skillLvL]

Thats all :).

 

Credits: unknown.

Posted

very nice and usefull share,thnx for it.

 

This Very Cool  :D

Thanks for the share it's very usefull =)

pretty usefull but i think i had seen it again anyway thnx

Super.

 

Losers. This is the most hackable buffer in the world.

  • 1 month later...
Posted

Losers. This is the most hackable buffer in the world.

is a voiced command how it is supposed to be them most hacked explain us please

Posted

is a voiced command how it is supposed to be them most hacked explain us please

 

take the bypass with phx and spam it... thats enought to get your server hacked

Posted

take the bypass with phx and spam it... thats enought to get your server hacked

omfg i have done it in lots of servers and lagged only me! Come on

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.



  • Posts

    • Lineage 2 Interlude L2OFF Server Based on H5 Files   Are you looking to start your own Lineage 2 server? This is your chance! I’m selling a 100% functional server based on Official L2OFF H5 files, adapted to the Interlude version. Main Features: Based on official L2OFF H5 files, perfectly configured for Interlude. Includes the full source code, allowing you to fully customize the server to fit your needs. Fully working events, such as: TvT (Team vs. Team) CTF (Capture the Flag) Tons of custom content added, keeping the balance and original essence of the game. Why choose this project? The server is fully functional and optimized, ready to launch. You can test the server before purchasing, with access to a GM character to explore all features. Comes with everything you need to make your project a success, both technically and in terms of content. Interested? Feel free to contact me! If you need more information or would like to schedule a test, I’m happy to answer any questions.   Auto Create Accounts Client Test Server: DOWNLOAD   Price: 600 usd Source price: send pm. Discord: Guytis#6760 Skype: gustavoorellano@hotmail.com  
    • Website: https://l2aurum.com/  Discord: https://discord.gg/l2aurum   Hello Everyone,  finally, the moment has arrived: I'm launching my own server, L2Aurum!   L2Aurum x300 Closed Beta Test - Start: 17.02.2025  [20:00 GMT+2] Grand Opening 21.02.2025 [20:00 GMT+2]     Experience Rates: x300 Skill Points Rates: x300 Adena Drop: x300 Premium Accounts: x2 Drop Rates: x1 Spoil Rates: x1 Quest Rates: x1 Only one account per player, no dualboxing allowed. Everything is earned through gameplay, no pay-to-win mechanics. No server wipes—your progress is permanent. Fair play is a priority, with no room for corruption. All players are treated equally, no special favors.     Buffs slots: 26+4, all buffs in NPC and Scheme System. Custom Armors: Aurum Apella Armor Custom Weapons: Aurum Weapon Custom Accessories: +300 P.Def & M.Def Tattoos: Mage & Fighter & Custom Shirts Custom Jewels: New Grand Bosses Auto Farm is FREE for everyone. Status Noblesse: Barakiel. Player Spawn Protection: 10 seconds. Geodata e Panthodes: ENABLED. All Commands are visible in .menu. System 2 Bishop Per Party: ENABLED. Boss Protect - Anti-Zerg: ENABLED.     Siege Duration: 2 hours (120 minutes). Siege Period: Every 7 days. Castle Reward: 100E Per Castle. Available Castles: Rune Aden Giran Giran Siege: Every Friday 20:00 GMT +2. Aden Siege: Every Saturday 20:00 GMT +2. Rune Siege: Every Sunday 20:00 GMT +2. Main Clan: 40 Members max. Royal Clan: 12 Members max. Knight Clan: 7 Members max. Alliance: You can have only 1.     Epic Boss Valakas: Monday 22:30 (GMT+2) Zaken: Tuesday | Thursday 22:30 (GMT+2) Queen Ant: Monday | Wednesday 22:30 (GMT+2) Baium: Friday 22:30 (GMT+2) Antharas: Saturday 22:30 (GMT+2) Orfen: Tuesday | Thursday | Saturday 18:30 (GMT+2) Core: Monday | Wednesday | Friday | Sunday 18:30 (GMT+2)   Raid Boss  Flame Of Splendor Barakiel Last Hit: Every Day Respawn 3-4 hours Ember: Every Day Respawn 3-4 hours Lilith: Every Day Respawn 3-4 hours Anakim: Every Day Respawn 3-4 hours Queen Shyeed: Every Day Respawn 3-4 hours Golkonda: Every Day Respawn 3-4 hours Shuriel: Every Day Respawn 3-4 hours Varka's Hero Shadith: Every Day Respawn 3-4 hours Ketra's Hero Hekaton: Every Day Respawn 3-4 hours Varka's Mos: Every Day Respawn 3-4 hours Chief Horus: Every Day Respawn 3-4 hours Ketra's Tayer: Every Day Respawn 3-4 hours Chief Brakki: Every Day Respawn 3-4 hours Sailren: Every Day Respawn 02:00   🥳🥳🥳🥳 I would like to chat personally with all of you over on our Discord and discuss any suggestions or feedback you might have.      Website: https://l2aurum.com/  Discord: https://discord.gg/l2aurum
  • Topics

×
×
  • Create New...