Jump to content

Recommended Posts

Posted

Hello today i am going to share a cool feature ! is about Rename NPC ..

You can change the npc ID and the Item ID that you want to count on config .

 

Restrictions:

- The name must only contain alpha-numeric characters.

- Maximum number of alpha-numeric characters: 16

- If the name already exists you have to choose onother name.

- Minimum level on config that you can change Name.

- You cannot use Space between the name else you have to choose onother name.

 

 

Create a file on data/scripts/custom/RenameNPC/RenameNPC.java and Insert this :

 

/*
* Copyright (C) 2004-2013 L2J DataPack
* 
* This file is part of L2J DataPack.
* 
* L2J DataPack 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 DataPack 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.RenameNPC;

import com.l2jserver.Config;
import com.l2jserver.gameserver.communitybbs.Manager.RegionBBSManager;
import com.l2jserver.gameserver.datatables.CharNameTable;
import com.l2jserver.gameserver.datatables.ItemTable;
import com.l2jserver.gameserver.instancemanager.QuestManager;
import com.l2jserver.gameserver.model.L2World;
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.quest.QuestState;
import com.l2jserver.gameserver.network.serverpackets.PartySmallWindowAll;
import com.l2jserver.gameserver.network.serverpackets.PartySmallWindowDeleteAll;
import com.l2jserver.gameserver.util.Util;

/**
* @author Invoke
*/
public class RenameNPC extends Quest
{
private final static int NPC = Config.RENAME_NPC_ID;

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

@Override
public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
{
	String htmltext = "New Name:<br1><edit var=\"newname\" width=120 height=18>";
	String eventSplit[] = event.split(" ");
	QuestState st = player.getQuestState(getName());

	if (eventSplit[0].equalsIgnoreCase("rename"))
	{
		st.getPlayer().setTarget(st.getPlayer());
		if (eventSplit.length != 2)
			htmltext = "Enter a new name or remove the space between the names.";			
		else if (st.getPlayer().getLevel() < Config.RENAME_NPC_MIN_LEVEL)
			htmltext = "Minimum Level is: " + String.valueOf(Config.RENAME_NPC_MIN_LEVEL);
		else if (validItemFee(st))
			htmltext = "You do not have enough items for exchange.";
		else if (eventSplit[1].length() < 1 || eventSplit[1].length() > 16)
			htmltext = "Maximum number of characters: 16";
		else if (!Util.isAlphaNumeric(eventSplit[1]))
			htmltext = "The name must only contain alpha-numeric characters.";
		else if (CharNameTable.getInstance().doesCharNameExist(eventSplit[1]))
			htmltext = "The name chosen is already in use. Choose another name.";
		else
		{
			try
			{
				L2World.getInstance().removeFromAllPlayers(player);
				player.setName(eventSplit[1]);
				player.store();
				L2World.getInstance().addToAllPlayers(player);
				htmltext = "Your name has been changed successfully.";
				player.broadcastUserInfo();

				String itemFeeSplit[] = Config.RENAME_NPC_FEE.split("\\;");
                    for (String anItemFeeSplit : itemFeeSplit)
                    {
                        String item[] = anItemFeeSplit.split("\\,");
                        st.takeItems(Integer.parseInt(item[0]), Integer.parseInt(item[1]));
                    }

				if (player.isInParty())
				{
					player.getParty().broadcastToPartyMembers(player, new PartySmallWindowDeleteAll());
					for (L2PcInstance member : player.getParty().getPartyMembers())
					{
						if (member != player)
							member.sendPacket(new PartySmallWindowAll(member, player.getParty()));
					}
				}
				if (player.getClan() != null)
					player.getClan().broadcastClanStatus();
				RegionBBSManager.getInstance().changeCommunityBoard();
			}
			catch (StringIndexOutOfBoundsException e)
			{ 
				htmltext = "Service unavailable!";
			}
		}
		return (page(htmltext,1));
	}
	return (page(htmltext,0));
}

@Override
public String onFirstTalk(L2Npc npc, L2PcInstance player)
{
	String htmltext = "";
	QuestState st = player.getQuestState(getName());
	if (st == null)
	{
		Quest q = QuestManager.getInstance().getQuest(getName());
		st = q.newQuestState(player);
	}
	htmltext = page("New Name:<br1><edit var=\"newname\" width=70 height=10>",0);
	return htmltext;
}

public String page(String msg, int t)
{
	String htmltext = "";
	htmltext += htmlPage("Title");
	htmltext += "Hello I'm here to help you change your name.<br>" + "Enter your new name, but make sure you have items for exchange:<br1>";
	String itemFeeSplit[] = Config.RENAME_NPC_FEE.split("\\;");
        for (String anItemFeeSplit : itemFeeSplit)
        {
            String item[] = anItemFeeSplit.split("\\,");
            htmltext += "<font color=\"LEVEL\">" + item[1] + " " + ItemTable.getInstance().getTemplate(Integer.parseInt(item[0])).getName() + "</font><br1>";
        }
	if (t == 0)
	{
		htmltext += "<br><font color=\"339966\">" + msg + "</font>";
		htmltext += "<br><center>" + button("Rename", "rename $newname", 70, 23) + "</center>";
	}		
	else
	{
		htmltext += "<br><font color=\"FF0000\">" + msg + "</font>";
		htmltext += "<br><center>" + button("Back", "begin", 70, 23) + "</center>";
	}
	htmltext += htmlPage("Footer");
	return htmltext;
}
public Boolean validItemFee(QuestState st)
{
	String itemFeeSplit[] = Config.RENAME_NPC_FEE.split("\\;");
        for (String anItemFeeSplit : itemFeeSplit)
        {
            String item[] = anItemFeeSplit.split("\\,");
            if (st.getQuestItemsCount(Integer.parseInt(item[0])) < Integer.parseInt(item[1]))
                return true;
        }
	return false;
}

public String htmlPage(String op)
{
	String texto = "";
	if (op.equals("Title"))
	{
		texto += "<html><body><title>Rename Manager</title><center><br>" + "<b><font color=ffcc00>Rename Manager Information</font></b>" + "<br><img src=\"L2UI_CH3.herotower_deco\" width=\"256\" height=\"32\"><br></center>";
	}
	else if (op.equals("Footer"))
	{
		texto += "<br><center><img src=\"L2UI_CH3.herotower_deco\" width=\"256\" height=\"32\"><br>" + "<br><font color=\"303030\">---</font></center></body></html>";
	}
	else
	{
		texto = "Not Found!";
	}
	return texto;
}

public String button(String name, String event, int w, int h)
{
	return "<button value=\"" + name + "\" action=\"bypass -h Quest RenameNPC " + event + "\" " + "width=\"" + Integer.toString(w) + "\" height=\"" + Integer.toString(h) + "\" " + "back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\">";
}

public String link(String name, String event, String color)
{
	return "<a action=\"bypass -h Quest RenameNPC " + event + "\">" + "<font color=\"" + color + "\">" + name + "</font></a>";
}	

public static void main(String[] args)
{
	new RenameNPC(-1, "RenameNPC", "custom");
}
}

 

Add this on Config.java :

 

+ public static int RENAME_NPC_ID;
+ public static int RENAME_NPC_MIN_LEVEL;
+ public static String RENAME_NPC_FEE;

+				RENAME_NPC_ID = Integer.parseInt(L2JModSettings.getProperty("RenameNpcID", "36602"));
+				RENAME_NPC_MIN_LEVEL = Integer.parseInt(L2JModSettings.getProperty("RenameNpcMinLevel", "40"));
+				RENAME_NPC_FEE = L2JModSettings.getProperty("RenameNpcFee", "57,250000");



 

Add this on gameserver/config/L2jmods.properties :

 


#============================================================# 
# Rename Npc by Invoke
#============================================================# 

# ID of Rename Npc
# Prefer using this ID
RenameNpcID = 36614

# Minimum level to use Rename Npc...
RenameNpcMinLevel = 40

# ID of Rename Npc Fee...
# Example: Adena = 57 , and 5000 is the item count needed
# RenameNpcFee = 57,5000;5575,100
RenameNpcFee = 9143,5


 

Create an NPC insert this on your npc.sql

 

36614	32795	Rename Manager	1	By Invoke	1	LineageMonster4.guard_naia_a	20	23	35	male	L2Npc	40	125	515	15	15	40	43	30	21	20	20	0	0	0	0	0	0	230	1	333	0	0	0	60	120	0	0

 

In order to make it run go to gamserver/scripts.cfg and find the Custom section and add this line :

 

 custom/RenameNPC/RenameNPC.java 

 

I hope you like it Credits to me (Invoke)

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

    • Donations can provide anything that can be obtained through normal gameplay. There are no augmentations on armors, no stuck skills, and no custom items. Therefore, donations do not affect the game balance.     thank you!
    • Facebook-Ins-X-Pin-Proxy - 150M+ Fresh Residential Proxies    MoMoProxy Official Site: MoMoProxy.com   1. Features ------------------------------------------ 1. 190+ Countries And Millions of City Targeting”; 2. 80M+ Rotating Residential Proxies”; 3. 5M+ 240 Minutes Lasting Sticky Residential Proxies”; 4. 99.64% Request Success Rate.” 5. High Anonymous Clean Residential Proxies. 6. 50M-1GB/S Download and Upload Speed. 7. IP Whitelist Or User Pass Authentication. 8. Convenient IP Abstracting On User Panel, No APP Download. 9. IP Pool Covers 190+ Countries. 10. API For Automation Workflow. 11. Compatible With All Browsers & Devices. 12. SOCKS5 HTTP(S) Proxies. 13. 99.64% Request Success Rate and 99.9% Update. 2. Use Cases: Web Scraping and Data Extraction Use MoMoProxy to access websites anonymously and avoid IP blocking while scraping large volumes of data for research, business intelligence, or competitive analysis. Social Media Management (Multiple Accounts) Manage multiple social media accounts (e.g., Instagram, Twitter, Facebook) simultaneously with different proxy IPs to avoid account bans and increase operational efficiency. SEO and SERP Tracking Use MoMoProxy to perform SEO audits and track search engine result page (SERP) rankings without being blocked by search engines, simulating searches from different geographical locations. E-commerce Price Monitoring Monitor competitors' prices on e-commerce platforms (like Amazon, eBay) by using MoMoProxy's rotating residential IPs to simulate user requests from different regions without getting flagged. Web Testing and Automation Conduct automated web testing by using MoMoProxy to simulate user behavior across different locations, devices, and networks, ensuring that web applications behave consistently under various conditions. Ad Verification Verify online advertisements (display ads, pay-per-click ads) from different IP addresses to ensure proper targeting and compliance with advertising policies. Fraud Prevention and Security Safeguard your online activities (such as financial transactions or account logins) by using MoMoProxy to rotate IP addresses and protect against IP-based attacks or fraud. Market Research Collect data from various sources without being detected or restricted, allowing for comprehensive market research, competitor analysis, and trend forecasting. Mobile App Testing Use MoMoProxy to test mobile applications across different regions and simulate real-world user scenarios, ensuring that apps perform correctly in various network environments. Ticketing and Event Booking Secure tickets for high-demand events by using MoMoProxy to mask your real IP and bypass ticket purchasing limits based on IP addresses. Ad Fraud Prevention Prevent ad fraud by rotating IPs to detect and block suspicious activities related to advertising, ensuring accurate attribution and campaign performance analysis. Academic Research and Surveys Use MoMoProxy to distribute surveys or gather data from different regions without bias due to regional IP filtering or restrictions.   3. Pricing List: ----------------------------------------------- Note: Price List will be changable based on our promotion every month or in some Dig Days. If any question or help please contact our support online timely: Telegram: https://t.me/momoproxy_com Email: support@momoproxy.com 4. Payments: Now MoMoProxy Supports: A. Crypto Currency Payment, including USDT, BTC, and more; B. Alipay HK, UnionPay; C. Doku For local Southeast Asia payment; D. Offline Aliay and WeChat, please contact support Online; (Note: Visa, MasterCard and Paypal is coming within 30 days). 5.Return Policy MoMoProxy Offer 3 days free trial for all new users that will be helpful for you get further experience on MoMoProxy quality before payment. We also provide 24 hours money-back guarantee, which only applies to technical issues related to MoMoProxy servers that we can not fix within 24 hours. 6. FAQ A. How to buy a plan and how about MoMoProxy payments? After logging in, and enter into the user dashboard, please choose the right plan that be suitable for you, and click [Buy Proxy]. Now MoMoProxy Supports: A. Crypto Currency Payment, including USDT, BTC, and more; B. Alipay HK, UnionPay; C. Doku For local Southeast Asia payment; D. Offline Aliay and WeChat, please contact support Online; (Note: Visa, MasterCard and Paypal is coming within 30 days). B. Where can I use residential IP addresses? a. For Handle Proxy Generate, Just Choose [Proxy Setup], Click [Residential Proxies], and go to [Endpoint Generator] Part, and choose [location] and [proxy type], click [Generate] to generate Proxy List, all steps will be easily; b. Residential Proxies (API) is also available for automation. Can I integrate proxies with 3rd party software, bots and automation tools? You can integrate MoMoProxy proxies with all major automation bots under the help of our API. C. Can I select proxies from specific locations? You can access residential proxies through country-specific, state-targeting or city-targeting after using your login credentials (username and password) or in Allowlisted IPs, such as Los Angeles, California, USA. 7. Contact Us Telegram: https://t.me/momoproxy_com Email: support@momoproxy.com 8. How To Get A FREE Trial? Please register your account firstly, and contact support online to get A 1GB Free Trial! Get 1GB Free Trial NOW! Get 1GB Free Trial NOW! Get 1GB Free Trial NOW! Get 1GB Free Trial NOW! Get 1GB Free Trial NOW! Get 1GB Free Trial NOW!
    • Hello! That's funny things: Rates x3 And  "No Donate things affect the game balance"                           GM Donate Shop - B-A-S grade for Donation Coins VIP Status: Rates x8
    • I’ve been using SMS.To for a while now and it’s been solid. No issues with delays so far, and the text messaging works right away for verification. Way easier than dealing with local SIM cards for every site.
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock