Jump to content

Recommended Posts

Posted (edited)

Hello,

This npc shows the players and the weapons with the highest enchant in the server for l2jaCis.

 

 

https://prnt.sc/1v9lstl

 

 

/*
 * This program 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.
 * 
 * This program 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 net.sf.l2j.gameserver.model.actor.instance;
 
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.Map;
 
import net.sf.l2j.L2DatabaseFactory;
import net.sf.l2j.gameserver.datatables.ItemTable;
import net.sf.l2j.gameserver.model.actor.template.NpcTemplate;
import net.sf.l2j.gameserver.model.item.kind.Weapon;
import net.sf.l2j.gameserver.network.serverpackets.NpcHtmlMessage;
 
/**
 * @author Ugleethyn
 *
 */
public class TopManager extends Folk
{
	public TopManager(int objectId, NpcTemplate template)
	{
		super(objectId, template);
	}
 
	@Override
	public void onBypassFeedback(Player player, String command)
	{
			if(command.equals("topench")) {
			NpcHtmlMessage htm = new NpcHtmlMessage(getObjectId(), player);
			htm.setFile("data/html/topmanager/topench.htm");
			htm.replace("%stats%", getTopEnchant());
			player.sendPacket(htm);
		}
	}
 
 
	private static String getTopEnchant()
	{
		String ret = "";
		try (Connection con = L2DatabaseFactory.getInstance().getConnection())
		{
			PreparedStatement stm = con.prepareStatement("SELECT C.char_name, I.enchant_level,I.item_id\r\n"
				+ "FROM characters C\r\n"
				+ "INNER JOIN items I\r\n"
				+ "ON C.obj_Id = I.owner_id\r\n"
				+ "WHERE C.accesslevel = 0\r\n"
				+ "AND I.item_id IN (6364, 6365,6366,6367,6368,6369,6370,6371,6372,6579,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,7578,7577,7576,7575,7575,6610,6609,6593)\r\n"
				+ "ORDER BY I.enchant_level DESC LIMIT 15");
			ResultSet rset = stm.executeQuery();
			int i = 1;
			while (rset.next())
			{
				String name = rset.getString("char_name");
				int enchantLevel = rset.getInt("enchant_level");
				int itemId = rset.getInt("item_id");
				String weaponName = "";
				for (Map.Entry<Integer, Weapon> entry : ItemTable._weapons.entrySet()) {
					if((itemId== entry.getKey())) {
						weaponName = entry.getValue().getName();
					}
				}
				ret += "<table width=\"290\">"
					+ "<tr>"
					+ "<td FIXWIDTH=\"13\" align=\"left\">"+i+++"</td>"
					+ "<td FIXWIDTH=\"70\" align=\"left\">"+name+"</td>"
					+ "<td FIXWIDTH=\"50\" align=\"left\">"+enchantLevel+"</td>"
					+ "<td FIXWIDTH=\"157\" align=\"left\">"+weaponName+"</td>"
					+ "</tr>"
					+ "</table>"
					+ "<img src=\"L2UI.Squaregray\" width=\"300\" height=\"5\">";
			}
 
			rset.close();
			stm.close();
		}
		catch (Exception e)
		{
			e.printStackTrace();
		}
		return ret;
	}
 
	@Override
	public String getHtmlPath(int npcId, int val)
	{
		String filename = "";
		if (val == 0)
			filename = "" + npcId;
		else
			filename = npcId + "-" + val;
 
		return "data/html/topmanager/" + filename + ".htm";
	}
}
 

 

Html files : https://www.mediafire.com/file/xxn794ok2an46to/topmanager.rar/file

Edited by Ugleethyn
  • 4 months later...

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

    • It's a 5 days ago project. I initially started with the idea from C4, 4 months ago, you can see my stuff in the first posts of this thread. I experimented with scene loads while learning Odin and experimenting with graphics programming. Elfo got inspired by the idea and thought of implementing the full client, smth I didn't wanna do. I personally didn't look for inspiration on anything, just having fun with a new language. And elfo did the rest on his own. How about you act like an adult and acknowledge something good that's in front of you and respect the grind that Elfo pushed out since mot of vibe coders quit after a month or run out of money to invest into it. All the vibe wow slop and this recent one will get abandoned in a bit, you'll see. Also @Northy you sound like such a childish text book narcissist. Go touch some grass outside, you're not winning anything here. Have a good life 
    • ⭐ Fast support & replacement warranty guaranteed. All fresh links in stock with automated delivery!
    • Will open: 23 September 2026 | 20:00 GMT+2 Are you ready for a unique, hard-farm High Five journey? Join L2DragonLand where you can learn every skill in the game and build the ultimate character! Progress through custom farming zones and endless progression possibilities.   Server Features: XP Rate: 500x SP Rate: 2x   Drop / Spoil: 20x   Hard Farm Gameplay Safe Enchant: +600   Max Enchant: +600   Max Attribute: Level 7 Multiskill System: Learn every single skill in the game.   Custom Content: Zone Progression: Farm and progress through custom zones Item Upgrade System: Upgrade your gear step-by-step Custom Weapons & Armor: Packed with massive % P.Atk, M.Atk, P/M.Def, HP/CP stats Unique Visuals: Every item has unique custom stats and visual effects Additional Features Custom Buffer in Main Towns Custom Buff Learn NPC Global Gatekeeper Automated In-Game Events Lottery System Fast Boss Respawns: Crucial raid bosses respawn every 10 seconds Olympiad Every Two Weeks   Website: http://l2dragonland.eu/   Discord: https://discord.gg/geVGy8Xcpv   L2DragonLands
    • you can lie as much as you want. idea from git.   Open source h5 game engine on rust : https://github.com/nascimentolh/CanastraEngine
    • I have no clue what you're talking about. The idea was @Setekh's. Stop acting like a child.
  • 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..