Jump to content

[Share]De-Level-Manager (+Level Choice)


Recommended Posts

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
Link to comment
Share on other sites

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?

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

  • 2 weeks later...

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)

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.




  • Posts

    • I don't care what these random rats are typing to me. I will ruin their business for scamming other people's work. I'm very good at it, no matter what protection or obfuscation they add to their files. I will break them and share everything for free with the community that's what they deserve.
    • Look are you crazy or dumb? yes, im aware of this post, but i have NOTHING to do with it! unfortunately, when people sent me this post i even thought it was strange, and when i downloaded the server and the files really are without any protection, what do you want me to do about it? the reality is that im not even up to date on anything about Lineage anymore... im doing my things peacefully, bothering nobody.. He is talking about me, this guy is saying im the one who leaked or anyhting
    • Ps: I do know the guy, talked with him before, a few friends have bought stuff from him in the past and never had any issue. But hey, It happend so I'm posting it here. If he somehow answers back and sends the interface I will delete this post. A few days ago he made contact with me saying he had interface 474 code to sell. And since I also develop interfaces, I was interested in buying.   He told me the price, said he only accepted advcash/volet. I asked if he had any other crypto wallet or paypal email. He said no. After a while, he came back with a paypal email, in which we sent the money. But since its a new account, paypal blocked it for safekeeping. After this, he returned the money and we went to check on how to make a advcash/volet account. After a bit, we successfully created a "volet" account and transferred the money to him in 2 parts. 5 EUR first to check if he received the correct amount and later the 595 remaining to complete the 600 EUR for the asked price of the interface code and editors for it. His last message was on the 25th of September saying he wasn't home. Haven't heard from him since. I asked a friend of mine if he was legit and if he worked far from home and he did confirm this for me. But still. I would at least expect him to keep in touch with me to update his whereabouts and saying if he would need more time to arrive home. Here are the screens with the full discord conversation:    
  • Topics

×
×
  • Create New...