Jump to content

Recommended Posts

Posted (edited)

Hi there for one more time, i made this npc today because i can see there are lots of npc like this but there is not any like this i made today. It is just an NPC where player can choose what level would like to be. Price is being regulated automatically like that: Number_of_levels_decreased * Configurable_price.

 

E.g: Player is 85 level, he chooses to be 70. His payment would be 15(levels) * code_price.

 

Preview (HTM Dialog):

 

shot00001ti.png

 

How to install:

 

1. Create a new java file on data/scripts/custom/DeLevelManager/DeLevelManager.java

 

Paste this code:

 

package custom.DeLevelManager;
import com.l2jserver.gameserver.cache.HtmCache;
import com.l2jserver.gameserver.datatables.ItemTable;
import com.l2jserver.gameserver.model.L2Skill;
import com.l2jserver.gameserver.model.actor.L2Npc;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.model.quest.Quest;
import com.l2jserver.gameserver.network.serverpackets.ExBrExtraUserInfo;
import com.l2jserver.gameserver.network.serverpackets.NpcHtmlMessage;
import com.l2jserver.gameserver.network.serverpackets.UserInfo;

/**
* @author `Heroin
* Made For Maxcheaters.com
*/
public class DeLevelManager extends Quest
{
private static final int npcid = 36650; // npc id
private static final int MinLevel = 10; // Minimum Level, (e.g if you set 10, players wont be able to be level 9).
private static final int ItemConsumeId = 57; // Item Consume id
private int levels ; // Item Consume id
private static final int ItemConsumeNumEveryLevel = 100; // Item ItemConsumeNumEveryLevel
private static String htm = "data/scripts/custom/DeLevelManager/1.htm"; //html location
private static String ItemName = ItemTable.getInstance().createDummyItem(ItemConsumeId).getItemName();

public DeLevelManager(int questId, String name, String descr)
{
	super(questId, name, descr);
	addFirstTalkId(npcid);
	addTalkId(npcid);
	addStartNpc(npcid);
}

@Override
public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
{
	if (event.startsWith("dlvl"))
	{
		Dlvl(event, npc, player, event);
	}

	return "";
}

private void Dlvl(String event, L2Npc npc, L2PcInstance player, String command)
{

	try
	{
		String val = command.substring(5);
		int pointer = Integer.parseInt(val);
		int k = player.getLevel();
		levels = k - pointer;
		if (player.getInventory().getItemByItemId(ItemConsumeId) == null)
		{
			player.sendMessage("You don't have enough items!");
			return;
		}
		if (val == null)
		{
			player.sendMessage("Something went wrong!");
			return;
		}
		if (pointer < 10)
		{
			player.sendMessage("Incorrect Level Number!");
			return;
		}
		if (pointer < MinLevel)
		{
			player.sendMessage("Incorrect Level Number!");
			return;
		}
		if (player.getLevel() <= pointer)
		{
			player.sendMessage("Your level is already lower.");
			return;
		}
		if (player.getInventory().getItemByItemId(ItemConsumeId).getCount() < ItemConsumeNumEveryLevel*levels)
		{

			player.sendMessage("You don't have enough items!");
			return;
		}
		if (player.getInventory().getItemByItemId(ItemConsumeId).getCount() >= ItemConsumeNumEveryLevel)
		{
			k = player.getLevel();
			final byte lvl = Byte.parseByte(pointer + "");	
			player.getStat().setLevel(lvl);
			player.sendMessage("Congratulations! You are now "+pointer+" level.");
			for(L2Skill sk : player.getAllSkills())
			{
				player.removeSkill(sk);
			}
			player.broadcastStatusUpdate();
			player.broadcastUserInfo();
			player.sendPacket(new UserInfo(player));
			player.sendPacket(new ExBrExtraUserInfo(player));
			player.giveAvailableAutoGetSkills();
			player.giveAvailableSkills(true, true);
			player.sendSkillList();
			levels = k - pointer;
			player.destroyItemByItemId("DlvlManager", ItemConsumeId, ItemConsumeNumEveryLevel*levels, player, true);
		}
	}
	catch (Exception e)
	{
		player.sendMessage("Something went wrong try again.");
	}
}



@Override
public String onFirstTalk(L2Npc npc, L2PcInstance player)
{
	final int npcId = npc.getNpcId();
	if (player.getQuestState(getName()) == null)
	{
		newQuestState(player);
	}
	if (npcId == npcid)
	{
		String html = HtmCache.getInstance().getHtm(player.getHtmlPrefix(), htm);
		html = html.replaceAll("%player%", player.getName());
		html = html.replaceAll("%itemname%", ItemName);
		html = html.replaceAll("%price%", ""+ItemConsumeNumEveryLevel+"");

		NpcHtmlMessage npcHtml = new NpcHtmlMessage(0);
		npcHtml.setHtml(html);
		player.sendPacket(npcHtml);
	}
	return "";
}

public static void main(final String[] args)
{
	new DeLevelManager(-1, DeLevelManager.class.getSimpleName(), "custom");
	System.out.println("De Level Manager by `Heroin has been loaded successfully!");
}
}
 

 

2.Create a new htm file on data/scripts/custom/HeroManager/1.htm

Paste this code on it.

 

 

<html>
<title>%player%</title>
<body><center>
<img src="L2UI_CH3.herotower_deco" width=256 height=32></center><br>
Hello there, if you want to low your current level, you came to right place!<br>
You have just to choose the <font color=FF0000>number</font> of level you would like to be.<br>
In exchange, i am going to take you <font color=LEVEL>%price% %itemname%</font> for <font color=LEVEL>each level
</font> you decrease.<br>
Remember: You can't choose a number higher than your current level.<br>

<table width=270><tr>
<td><button value="Change my level to: " action="bypass -h Quest DeLevelManager dlvl $lv" width=180 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"></td>
<td><edit var="lv" width=50></td>
</tr></table>


<br><br><br><br>
<center>
<img src="L2UI_CH3.herotower_deco" width=256 height=32></center>
</body></html>
 

 

3. Add script on scripts.cfg file:

 

custom/DeLevelManager/DeLevelManager.java
 

 

4. Run this query on your database or install the NPC by yourself.

 

INSERT INTO `custom_npc` VALUES ('36650', '13173', 'DeLevelManager', '1', 'MaxCheaters.com', '1', 'LineageNPC.clear_npc', '8.00', '19.00', '85', 'male', 'L2Npc', null, null, null, null, null, '40', '43', '30', '21', '20', '20', '0', '0', null, null, null, null, '230', '1', '0', '333', '0', '0', '0', '60.00000', '120.00000', '1', '1', '0', '0');
 

 

How to Modify:

 

Check Variables on code:

 

private static final int npcid = 36650; // npc id
private static final int MinLevel = 10; // Minimum Level, (e.g if you set 10, players wont be able to be level 9).
private static final int ItemConsumeId = 57; // Item Consume id
private int levels ; // Item Consume id
private static final int ItemConsumeNumEveryLevel = 100; // Item ItemConsumeNumEveryLevel
private static String htm = "data/scripts/custom/DeLevelManager/1.htm"; //html location
 

 

 

Credits & Idea: `Heroin

 

 

Adapted to l2jserver high five by Solomun:

 

Spoiler

/*
 * Copyright (C) 2004-2018 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/>.
 */
package custom.DeLevelManager;

import com.l2jserver.gameserver.cache.HtmCache;
import com.l2jserver.gameserver.datatables.ItemTable;
import com.l2jserver.gameserver.model.actor.L2Npc;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.model.quest.Quest;
import com.l2jserver.gameserver.model.skills.Skill;
import com.l2jserver.gameserver.network.serverpackets.ExBrExtraUserInfo;
import com.l2jserver.gameserver.network.serverpackets.NpcHtmlMessage;
import com.l2jserver.gameserver.network.serverpackets.UserInfo;

public class DeLevelManager extends Quest
{
	private static final int NPC_ID = 36650; // npc id
	private static final int MIN_LEVEL = 10; // Minimum Level, (e.g if you set 10, players wont be able to be level 9).
	private static final int ITEM_CONSUME_ID = 57; // Item Consume id
	private int levels; // Item Consume id
	private static final int ITEM_CONSUME_COUNT_PER_LEVEL = 100; // Item ItemConsumeNumEveryLevel
	private static String htm = "data/scripts/custom/DeLevelManager/1.htm"; // html location
	private static String ItemName = ItemTable.getInstance().getTemplate(ITEM_CONSUME_ID).getName();
	
	public DeLevelManager()
	{
		super(-1, DeLevelManager.class.getSimpleName(), "custom");
		addFirstTalkId(NPC_ID);
		addTalkId(NPC_ID);
		addStartNpc(NPC_ID);
	}
	
	@Override
	public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
	{
		if (event.startsWith("dlvl"))
		{
			Dlvl(event, npc, player, event);
		}
		
		return "";
	}
	
	private void Dlvl(String event, L2Npc npc, L2PcInstance player, String command)
	{
		try
		{
			String val = command.substring(5);
			int pointer = Integer.parseInt(val);
			int k = player.getLevel();
			levels = k - pointer;
			if (player.getInventory().getItemByItemId(ITEM_CONSUME_ID) == null)
			{
				player.sendMessage("You don't have enough items!");
				return;
			}
			if (val == null)
			{
				player.sendMessage("Something went wrong!");
				return;
			}
			if (pointer < 10)
			{
				player.sendMessage("Incorrect Level Number!");
				return;
			}
			if (pointer < MIN_LEVEL)
			{
				player.sendMessage("Incorrect Level Number!");
				return;
			}
			if (player.getLevel() <= pointer)
			{
				player.sendMessage("Your level is already lower.");
				return;
			}
			if (player.getInventory().getItemByItemId(ITEM_CONSUME_ID).getCount() < (ITEM_CONSUME_COUNT_PER_LEVEL * levels))
			{
				player.sendMessage("You don't have enough items!");
				return;
			}
			if (player.getInventory().getItemByItemId(ITEM_CONSUME_ID).getCount() >= ITEM_CONSUME_COUNT_PER_LEVEL)
			{
				k = player.getLevel();
				final byte lvl = Byte.parseByte(pointer + "");
				player.getStat().setLevel(lvl);
				player.sendMessage("Congratulations! You are now " + pointer + " level.");
				for (Skill sk : player.getAllSkills())
				{
					player.removeSkill(sk);
				}
				player.broadcastStatusUpdate();
				player.broadcastUserInfo();
				player.sendPacket(new UserInfo(player));
				player.sendPacket(new ExBrExtraUserInfo(player));
				player.giveAvailableAutoGetSkills();
				player.giveAvailableSkills(true, true);
				player.sendSkillList();
				levels = k - pointer;
				player.destroyItemByItemId("DlvlManager", ITEM_CONSUME_ID, ITEM_CONSUME_COUNT_PER_LEVEL * levels, player, true);
			}
		}
		catch (Exception e)
		{
			player.sendMessage("Something went wrong try again.");
		}
	}
	
	@Override
	public String onFirstTalk(L2Npc npc, L2PcInstance player)
	{
		final int npcId = npc.getId();
		if (player.getQuestState(getName()) == null)
		{
			newQuestState(player);
		}
		if (NPC_ID == npcId)
		{
			String html = HtmCache.getInstance().getHtm(player.getHtmlPrefix(), htm);
			html = html.replaceAll("%player%", player.getName());
			html = html.replaceAll("%itemname%", ItemName);
			html = html.replaceAll("%price%", "" + ITEM_CONSUME_COUNT_PER_LEVEL + "");
			
			NpcHtmlMessage npcHtml = new NpcHtmlMessage(0);
			npcHtml.setHtml(html);
			player.sendPacket(npcHtml);
		}
		return "";
	}
	
	public static void main(final String[] args)
	{
		new DeLevelManager();
		System.out.println("De Level Manager by `Heroin has been loaded successfully!");
	}
}

 

 

Edited by Solomun
Posted

+1 For this amazing job.

You have new ideas in developing and that is good. You inspire us.

Keep sharing.

Posted

+1 For this amazing job.

You have new ideas in developing and that is good. You inspire us.

Keep sharing.

Is d-lvl a new idea? Hah

Posted

Is d-lvl a new idea? Hah

 

We all know that the de-level its one click from admin panel.

He made a npc for that so I found it new.

 

PS: I've never seen such as these shares so?

Posted

An easy share that didn't take you more than 15 mins to create it. Also the actual meaning of your share is trash. What means choose what level you want to be ? Rofl

Posted

An easy share that didn't take you more than 15 mins to create it. Also the actual meaning of your share is trash. What means choose what level you want to be ? Rofl

 

I don't know much from L2 but I find it kewl.

So this is my explanation.

You know he is the only who sharing things that are not shared again. That's why.

Posted

An easy share that didn't take you more than 15 mins to create it. Also the actual meaning of your share is trash. What means choose what level you want to be ? Rofl

I shared it for people who like to download this. You dont like, noone told you to download it. However, all other de-level manager don't work like that. If someone want be 40 level to kill AQ will need to decrease his level one-by-one? With this will be with 1 button in 1 min and pay for 40 levels he lost.

  • 2 weeks later...
Posted

Hi, i have little problem, some fix?

 

----------
1. ERROR in /DeLevelManager.java (at line 99)
player.giveAvailableAutoGetSkills();
       ^^^^^^^^^^^^^^^^^^^^^^^^^^
The method giveAvailableAutoGetSkills() is undefined for the type L2PcInstance
----------
2. ERROR in /DeLevelManager.java (at line 100)
player.giveAvailableSkills(true, true);
       ^^^^^^^^^^^^^^^^^^^
The method giveAvailableSkills() in the type L2PcInstance is not applicable for the arguments (boolean, boolean)

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

    • Server owners, Top.MaxCheaters.com is now live and accepting Lineage 2 server listings. There is no voting, no rankings manipulation, and no paid advantages. Visibility is clean and equal, and early listings naturally appear at the top while the platform grows. If your server is active, it should already be listed. Submit here https://Top.MaxCheaters.com This platform is part of the MaxCheaters.com network and is being built as a long-term reference point for the Lineage 2 community. — MaxCheaters.com Team
    • ⚙️ General Changed “No Carrier” title to “Disconnected” to avoid confusion after abnormal DC. On-screen Clan War kill notifications will no longer appear during Sieges, Epics, or Events. Bladedancer or SwordSinger classes can now log in even when Max Clients (2) is reached, you cannot have both at the same time. The max is 3 clients. Duels will now be aborted if a monster aggros players during a duel (retail-like behavior). Players can no longer send party requests to blocked players (retail-like). Fixed Researcher Euclie NPC dialogue HTML error. Changed Clan leave/kick penalty from 12 hours to 3 hours. 🧙 Skills Adjusted Decrease Atk. Spd. & Decrease Speed land rates in Varka & FoG. Fixed augmented weapons not getting cooldown when entering Olympiad. 🎉 Events New Team vs Team map added. New Save the King map added (old TvT map). Mounts disabled during Events. Letter Collector Event enabled Monsters drop letters until Feb. 13th Louie the Cat in Giran until Feb. 16th Inventory slots +10 during event period 📜 Quests Fixed “Possessor of a Precious Soul Part 1” rare stuck issue when exceeding max quest items. Fixed Seven Signs applying Strife buff/debuff every Monday until restart. 🏆 Milestones New milestone: “Defeat 700 Monsters in Varka” 🎁 Rewards: 200 Varka’s Mane + Daily Coin 🌍 NEW EXP Bonus Zones Hot Springs added Varka Silenos added (hidden spots excluded) As always, thank you for your support! L2Elixir keeps evolving, improving, and growing every day 💙   Website: https://l2elixir.org/ Discord: https://discord.gg/5ydPHvhbxs
    • https://sms.pro/ — we are an SMS activation platform  seeking partners  mobile number providers  mobile number owners  owners of GSM modems  SIM card owners We process 1,000,000 activations every day.  寻找合作伙伴  手机号码提供商  手机号码持有者  GSM调制解调器持有者  SIM卡持有者 我们每天处理1,000,000次激活。  Ищем партнеров  Владельцы сим карт  провайдеров  владельцев мобильных номеров  владельцев модемов  Обрабатываем от 1 000 000 активаций в день ⚡️ Fast. Reliable.   https://sms.pro/ Support: https://t.me/alismsorg_bot
    • "WHAT I WILL SEE ON NEW SEASON ? *More easy farm and augment than ever before ! *Free VIP characters for everyone for first 2 days after opening ! Improved olympiad engine to work more correctly. 3 New skins / outfits. Fixed raid boss spawns. Fixed olympiad crit errors. New farming Ivory Tower area. Fixed augmentation rate. Increased all mob drops rate by +20%. And much more..."   1. I have clicked VIP 23.01.2026 20:00 a few second after open server. 2 Days is 48h. Now 24.01.2026 I have 17 hours left, so my VIP will expire 08:00 25.01.2026. Where is 12h? SCAM.   2. Where is ivory tower area?   3. When next wipe?   
  • 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..