Jump to content
  • 0

Change Name. (Voiced)


Question

Posted (edited)

Καλησπερα,

 

Χρειαζομαι μια βοηθεια.. Προσπαθω να φτιαξω μια voiced command που θα μπορει να χρησιμποιησει καποιος ωστε να αλλαζει το ονομα του.

Πηρα τον κωδικα απο το admin change_name αλλα για καποιο λογο δεν μπορω να δωσω το ονομα στην μεταβλητη..

Στο html χρησιμοποιω var.

if ((command.startsWith("changeName")))
           {
  			
    		   
    		   if (target != null)  
    		{
    			   
    		   try
   			{
   				String val = target.substring(17);
   				L2Object targetx = activeChar.getTarget();
   				L2PcInstance player = null;		
	
   				if (targetx instanceof L2PcInstance)
   				{
   					player = (L2PcInstance) targetx;
   				}
   				else
   				{
   					return false;
   				}
   				if (CharNameTable.getInstance().getIdByName(val) > 0)
   				{
   					activeChar.sendMessage("Name: " + val + " already exists");
   					return false;
   				}
   				player.setName(val);
   				player.store();
   				
   				activeChar.sendMessage("Changed name to " + val);
   				player.broadcastUserInfo();
   				CommunityServerThread.getInstance().sendPacket(new WorldInfo(player, null, WorldInfo.TYPE_UPDATE_PLAYER_DATA));
   				
   				if (player.isInParty())
   				{
   					// Delete party window for other party members
   					player.getParty().broadcastToPartyMembers(player, PartySmallWindowDeleteAll.STATIC_PACKET);
   					for (L2PcInstance member : player.getParty().getMembers())
   					{
   						// And re-add
   						if (member != player)
   						{
   							member.sendPacket(new PartySmallWindowAll(member, player.getParty()));
   						}
   					}
   				}
   				if (player.getClan() != null)
   				{
   					player.getClan().broadcastClanStatus();
   				}
   				
   				RegionBBSManager.getInstance().changeCommunityBoard();
   			}
   			catch (StringIndexOutOfBoundsException e)
   			{ // Case of empty character name
   				activeChar.sendMessage("Usage: //setname new_name_for_target");
   			}
    		}
    		 else
				{
					// showHTML(activeChar);
					String html = HtmCache.getInstance().getHtm("en", "data/html/panelhelp/ChangeName.htm");
					if (html == null)
					{
						html = "<html><body><br><br><center><font color=LEVEL>404:</font> File Not Found</center></body></html>";
					}
					activeChar.sendPacket(new NpcHtmlMessage(1, html));
					return true;
				}
				return true;
  			
  		
  

           } //command changeName
    	    

Και το html ειναι:

<tr>New Name</tr><tr><edit type="password" var="val" width=150></tr><br>

<button action="bypass -h voice .changeName $val" value="Change my name!" width=140 height=25 back=L2UI_CT1.Button_DF fore=L2UI_CT1.Button_DF>
 

Αν μπορουσε καποιος να βοηθησει θα ημουν υποχρεωμενος μιας κ δεν μπορω να καταλαβω γιατι δεν περνει η μεταβλητη τη τιμη...

Edited by fxb0t

4 answers to this question

Recommended Posts

  • 0
Posted

Καλησπερα,

 

Χρειαζομαι μια βοηθεια.. Προσπαθω να φτιαξω μια voiced command που θα μπορει να χρησιμποιησει καποιος ωστε να αλλαζει το ονομα του.

Πηρα τον κωδικα απο το admin change_name αλλα για καποιο λογο δεν μπορω να δωσω το ονομα στην μεταβλητη..

Στο html χρησιμοποιω var.

if ((command.startsWith("changeName")))
           {
  			
    		   
    		   if (target != null)  
    		{
    			   
    		   try
   			{
   				String val = target.substring(17);
   				L2Object targetx = activeChar.getTarget();
   				L2PcInstance player = null;		
	
   				if (targetx instanceof L2PcInstance)
   				{
   					player = (L2PcInstance) targetx;
   				}
   				else
   				{
   					return false;
   				}
   				if (CharNameTable.getInstance().getIdByName(val) > 0)
   				{
   					activeChar.sendMessage("Name: " + val + " already exists");
   					return false;
   				}
   				player.setName(val);
   				player.store();
   				
   				activeChar.sendMessage("Changed name to " + val);
   				player.broadcastUserInfo();
   				CommunityServerThread.getInstance().sendPacket(new WorldInfo(player, null, WorldInfo.TYPE_UPDATE_PLAYER_DATA));
   				
   				if (player.isInParty())
   				{
   					// Delete party window for other party members
   					player.getParty().broadcastToPartyMembers(player, PartySmallWindowDeleteAll.STATIC_PACKET);
   					for (L2PcInstance member : player.getParty().getMembers())
   					{
   						// And re-add
   						if (member != player)
   						{
   							member.sendPacket(new PartySmallWindowAll(member, player.getParty()));
   						}
   					}
   				}
   				if (player.getClan() != null)
   				{
   					player.getClan().broadcastClanStatus();
   				}
   				
   				RegionBBSManager.getInstance().changeCommunityBoard();
   			}
   			catch (StringIndexOutOfBoundsException e)
   			{ // Case of empty character name
   				activeChar.sendMessage("Usage: //setname new_name_for_target");
   			}
    		}
    		 else
				{
					// showHTML(activeChar);
					String html = HtmCache.getInstance().getHtm("en", "data/html/panelhelp/ChangeName.htm");
					if (html == null)
					{
						html = "<html><body><br><br><center><font color=LEVEL>404:</font> File Not Found</center></body></html>";
					}
					activeChar.sendPacket(new NpcHtmlMessage(1, html));
					return true;
				}
				return true;
  			
  		
  

           } //command changeName
    	    

Και το html ειναι:

<tr>New Name</tr><tr><edit type="password" var="val" width=150></tr><br>

<button action="bypass -h voice .changeName $val" value="Change my name!" width=140 height=25 back=L2UI_CT1.Button_DF fore=L2UI_CT1.Button_DF>
 

Αν μπορουσε καποιος να βοηθησει θα ημουν υποχρεωμενος μιας κ δεν μπορω να καταλαβω γιατι δεν περνει η μεταβλητη τη τιμη...

kapou sto forum iparxei ena services npc gia freya-hi5...ayto to npc allazei kai to onoma sou..einai java den einai python. den xerw an mporeseis na deis ta lathi pou exeis kanei ston code sou ap ayto to npc

  • 0
Posted

To koitaksa alla dn mporw na vgalw akrh. Dokimasa na to kanw k etsi kai pali tpt. Ama dosw timh stin metavliti apo prin douleuei komple. Ama prospathisw apo html dn pernei tin timh i metavliti. 

 

Ksereis ti eiani to StringTokenizer?

Guest
This topic is now closed to further replies.


  • Posts

    • https://gitlab.com/Tryskell/acis_public nai swsta, exeis kati pio updated na mas protineis? 
    • 🔥 L2Gold Enma – High Rate PvP Interlude 🔥 Interlude Chronicle • C6 Skills • Pure PvP Experience Welcome to L2Gold Enma, a high-rate PvP server designed for players who want instant action, balanced gameplay and nonstop PvP, without pointless grinding. ⚔️ Server Rates XP / SP: x1000 Adena / Drops: x10 Chronicle: Interlude Skills: C6 balanced skills Buff duration: 2 hours No weight limit 🎮 Gameplay Philosophy Fast leveling, instant PvP Clean Interlude experience No pay-to-win mechanics Focus on skill-based PvP 🛡️ Core Features Global Gatekeeper Offline shops Auto events (TvT, DM, CTF, etc.) Retail-like Olympiad with custom balance Active Raid Bosses Easy access to PvP gear 🏰 PvP & Competition Mass PvP & clan wars Meaningful castle sieges Olympiad focused on player skill Balanced classes for both solo & group PvP ⚡ Why L2Gold Enma? Interlude nostalgia with C6 skills High rates, low grind Stable server & active development Community-focused updates 💥 Join L2Gold Enma and dominate the battlefield! This is not a farm server. This is PvP   https://l2gold-enma.com/ https://discord.com/invite/Ba9cHj3HUJ
    • Hi I'm still online for this but making backup of everything in that time I didn't organize well so let me create a pack and upload to archive.org maybe. Thanks ! we can enrich togethers this if everyone add more and more old files.
    • 🔥 **Rework Multi-Sub x12 is coming!** 🔥 A brand-new Lineage II server built from scratch with modern systems, balance, and long-term gameplay in mind. 🧪 OBT: **Feb 16, 18:00 MSK** 🚀 Grand Opening: **Feb 20, 20:00 MSK** Season Pass • Homunculi • Global Trade • Guaranteed Synthesis Clean mechanics. Real progression. Fresh start. 🔗 Join the new chapter of Rework. https://rework.multeria.world/
  • 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..