Jump to content

Recommended Posts

Posted

I'm looking for that command if someone share please.

http://maxcheaters.com/forum/index.php?topic=90945.0

 

/*
* 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 l2j.crazy.devs.gameserver.handler.voicedcommandhandlers;

import java.security.MessageDigest;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.StringTokenizer;

import l2j.crazy.devs.Base64;
import l2j.crazy.devs.L2DatabaseFactory;
import l2j.crazy.devs.gameserver.handler.IVoicedCommandHandler;
import l2j.crazy.devs.gameserver.model.actor.instance.L2PcInstance;

/**
*
* @author Destractor
*
*/
public class ChangePassword implements IVoicedCommandHandler
{
private static final String[] _voicedCommands =
{
	"changepassword"
};

public boolean useVoicedCommand(String command, L2PcInstance activeChar, String target)
{
	if (command.equalsIgnoreCase("changepassword") && target != null)
	{
		StringTokenizer st = new StringTokenizer(target);
		try
		{
			String curpass = null, newpass = null, repeatnewpass = null;
			if (st.hasMoreTokens()) curpass = st.nextToken();
			if (st.hasMoreTokens()) newpass = st.nextToken();
			if (st.hasMoreTokens()) repeatnewpass = st.nextToken();

			if (!(curpass == null || newpass == null || repeatnewpass == null))
			{
				if (!newpass.equals(repeatnewpass))
				{
					activeChar.sendMessage("The new password doesn't match with the repeated one!");
					return false;
				}
				if (newpass.length() < 3)
				{
					activeChar.sendMessage("The new password is shorter than 3 chars! Please try with a longer one.");
					return false;
				}
				if (newpass.length() > 30)
				{
					activeChar.sendMessage("The new password is longer than 30 chars! Please try with a shorter one.");
					return false;
				}

				MessageDigest md = MessageDigest.getInstance("SHA");

				byte[] raw = curpass.getBytes("UTF-8");
				raw = md.digest(raw);
				String curpassEnc = Base64.encodeBytes(raw);
				String pass = null;
				int passUpdated = 0;

				// SQL connection
				Connection con = null;
				con = L2DatabaseFactory.getInstance().getConnection();
				PreparedStatement statement = con.prepareStatement("SELECT password FROM accounts WHERE login=?");
				statement.setString(1, activeChar.getAccountName());
				ResultSet rset = statement.executeQuery();
				if (rset.next())pass = rset.getString("password");
				rset.close();
				statement.close();

				if (curpassEnc.equals(pass))
				{
			        byte[] password = newpass.getBytes("UTF-8");
			        password = md.digest(password);
			        
			        // SQL connection
			        PreparedStatement ps = con.prepareStatement("UPDATE accounts SET password=? WHERE login=?");
			        ps.setString(1, Base64.encodeBytes(password));
			        ps.setString(2, activeChar.getAccountName());
			        passUpdated = ps.executeUpdate();
			        ps.close();
			        con.close();						
			        if (passUpdated > 0)
					{
						activeChar.sendMessage("You have successfully changed your password!");
					}
					else 
					{
						activeChar.sendMessage("The password change was unsuccessful!");
					}

				}
				else
				{
					activeChar.sendMessage("CurrentPass doesn't match with your current one.");
					return false;
				}
			}
			else
			{
				activeChar.sendMessage("Invalid pass data! Format: .changepassword CurrentPass NewPass NewPass");
				return false;
			}
		}
		catch (Exception e)
		{
			activeChar.sendMessage("A problem occured while changing password!");
		}
	}
	else
	{
		activeChar.sendMessage("To change your current password, you have to type the command in the following format(without the brackets []): [.changepassword CurrentPass NewPass NewPass]. You should also know that the password is case sensitive.");
		return false;
	}
	return true;
}

public String[] getVoicedCommandList()
{
	return _voicedCommands;
}
}

 

And this code will work?

 

 

 

 

And from where i should know it's already add to H5 LoL

/*
* 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 handlers.voicedcommandhandlers;

import java.util.StringTokenizer;
import java.util.logging.Level;

import com.l2jserver.gameserver.LoginServerThread;
import com.l2jserver.gameserver.cache.HtmCache;
import com.l2jserver.gameserver.handler.IVoicedCommandHandler;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.network.serverpackets.NpcHtmlMessage;

/**
* @author Nik
*/
public class ChangePassword implements IVoicedCommandHandler
{
private static final String[] _voicedCommands =
{
	"changepassword"
};

@Override
public boolean useVoicedCommand(String command, L2PcInstance activeChar, String target)
{
	if (target != null)
	{
		final StringTokenizer st = new StringTokenizer(target);
		try
		{
			String curpass = null, newpass = null, repeatnewpass = null;
			if (st.hasMoreTokens())
			{
				curpass = st.nextToken();
			}
			if (st.hasMoreTokens())
			{
				newpass = st.nextToken();
			}
			if (st.hasMoreTokens())
			{
				repeatnewpass = st.nextToken();
			}

			if (!((curpass == null) || (newpass == null) || (repeatnewpass == null)))
			{
				if (!newpass.equals(repeatnewpass))
				{
					activeChar.sendMessage("The new password doesn't match with the repeated one!");
					return false;
				}
				if (newpass.length() < 3)
				{
					activeChar.sendMessage("The new password is shorter than 3 chars! Please try with a longer one.");
					return false;
				}
				if (newpass.length() > 30)
				{
					activeChar.sendMessage("The new password is longer than 30 chars! Please try with a shorter one.");
					return false;
				}

				LoginServerThread.getInstance().sendChangePassword(activeChar.getAccountName(), activeChar.getName(), curpass, newpass);
			}
			else
			{
				activeChar.sendMessage("Invalid password data! You have to fill all boxes.");
				return false;
			}
		}
		catch (Exception e)
		{
			activeChar.sendMessage("A problem occured while changing password!");
			_log.log(Level.WARNING, "", e);
		}
	}
	else
	{
		// showHTML(activeChar);
		String html = HtmCache.getInstance().getHtm("en", "data/html/mods/ChangePassword.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;
}

@Override
public String[] getVoicedCommandList()
{
	return _voicedCommands;
}
}

Posted

LOL what do you need now?A changepass command?

Because if you share this , this is not correct , with this code only it will not work.

I am very confused.

Posted

I need patch for freya, for command .changepassword

 

try to adapt the code from l2jserver h5 version !

 

Also u have already found solution

 

http://trac.l2jserver.com/changeset/4917

 

http://trac.l2jdp.com/changeset/8369

Posted

game\data\scripts\handlers\voicedcommandhandlers -> Create ChangePassword.java

 

/*
* 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 handlers.voicedcommandhandlers;

import java.security.MessageDigest;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.StringTokenizer;
import java.util.logging.Level;

import com.l2jserver.Base64;
import com.l2jserver.L2DatabaseFactory;
import com.l2jserver.gameserver.handler.IVoicedCommandHandler;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;

public class ChangePassword implements IVoicedCommandHandler
{
   private static final String[] _voicedCommands = { "changepassword" };
   private static final int MIN = 6; // minimum character lengths
   private static final int MAX = 30; // miaximum character lengths
   
   @Override
   public boolean useVoicedCommand(final String command, final L2PcInstance activeChar, final String target)
   {
      if (command.equalsIgnoreCase("changepassword") && target != null)
      {
         final StringTokenizer st = new StringTokenizer(target);
         try
         {
            String curpass = null, newpass = null, repeatnewpass = null;
            if (st.hasMoreTokens())
               curpass = st.nextToken();
            if (st.hasMoreTokens())
               newpass = st.nextToken();
            if (st.hasMoreTokens())
               repeatnewpass = st.nextToken();
            
            if (!(curpass == null || newpass == null || repeatnewpass == null))
            {
               if (!newpass.equals(repeatnewpass))
               {
                  activeChar.sendMessage("Your repeated password must be the same as new password!");
                  return false;
               }
               if (newpass.length() < MIN)
               {
                  activeChar.sendMessage("Your password must have min: " + MIN + " chars!");
                  return false;
               }
               if (newpass.length() > MAX)
               {
                  activeChar.sendMessage("Your password can't have more than " + MAX + " chars!");
                  return false;
               }
               
               final MessageDigest md = MessageDigest.getInstance("SHA");
               
               byte[] raw = curpass.getBytes("UTF-8");
               raw = md.digest(raw);
               final String curpassEnc = Base64.encodeBytes(raw);
               String pass = null;
               int passUpdated = 0;
               
               Connection con = null;
               
               try
               {
                  con = L2DatabaseFactory.getInstance().getConnection();
                  final PreparedStatement statement = con.prepareStatement("SELECT password FROM accounts WHERE login=?");
                  statement.setString(1, activeChar.getAccountName());
                  final ResultSet rset = statement.executeQuery();
                  if (rset.next())
                     pass = rset.getString("password");
                  rset.close();
                  statement.close();
                  
                  if (curpassEnc.equals(pass))
                  {
                     byte[] password = newpass.getBytes("UTF-8");
                     password = md.digest(password);
                     
                     final PreparedStatement ps = con.prepareStatement("UPDATE accounts SET password=? WHERE login=?");
                     ps.setString(1, Base64.encodeBytes(password));
                     ps.setString(2, activeChar.getAccountName());
                     passUpdated = ps.executeUpdate();
                     ps.close();
                     _log.info("Character " + activeChar.getName() + " has changed his password from " + curpassEnc + " to " + Base64.encodeBytes(password));
                     
                     if (passUpdated > 0)
                        activeChar.sendMessage("Your password was updated successfully!");
                     else
                        activeChar.sendMessage("Your password wasn't changed due troubles!");
                  }
                  else
                  {
                     L2DatabaseFactory.close(con);
                     activeChar.sendMessage("Passess not matches.");
                     return false;
                  }
               }
               catch (final Exception e)
               {
               }
               finally
               {
                  L2DatabaseFactory.close(con);
               }
            }
            else
            {
               activeChar.sendMessage("Wrong command structure! Use: .changepassword currendPassword newPassword retypePassword");
               return false;
            }
         }
         catch (final Exception e)
         {
            activeChar.sendMessage("A problem occured while changing password!");
            _log.log(Level.WARNING, "", e);
         }
      }
      else
      {
         activeChar.sendMessage("Wrong command structure! Use: .changepassword currendPassword newPassword retypePassword");
         return false;
      }
      return true;
   }
   
   @Override
   public String[] getVoicedCommandList()
   {
      return _voicedCommands;
   }
}

Posted

try to adapt the code from l2jserver h5 version !

 

Also u have already found solution

 

http://trac.l2jserver.com/changeset/4917

 

http://trac.l2jdp.com/changeset/8369

 

I try, can't.. i'm looking for already adapted one...

Guest
This topic is now closed to further replies.


  • Posts

    • ## [1.4.0] - 2026-01-28   ### ✨ New Features - **Vote System**: Lineage 2 servers can now use our vote–reward system. Players vote on the website and claim rewards in-game (1 vote = 1 claim) - **Vote Page**: On each server’s page (`/servers/<server>`), a **“Vote for Server”** button opens a dedicated vote page with cooldown info and optional Turnstile verification - **By Votes View**: The **“By Votes”** tab on the main page shows **actual vote counts** per server - **API Documentation**: New **API Docs** page at `/docs` (and footer link) with HMAC auth, endpoints, and examples for game server integration - **Vote API (My Servers)**: Server owners can open **“Vote API”** in My Servers to manage credentials, cooldown, allowed IPs, and open the docs   ### 🔄 Improvements - **Server Pages**: Single-server data is cached and loads faster; server pages can be opened by ID or by name (e.g. `/servers/my-server-name`) - **API Root**: Visiting the API root redirects to the docs URL configured in admin (default: site docs page) - **Admin Panel**: New **“Vote System”** tab for global settings (Turnstile, API security, default cooldown, docs URL)   ### 🔐 Security & Reliability - Turnstile (CAPTCHA) support for vote submissions to reduce abuse - HMAC-protected game server API for secure vote check/claim and stats
    • "I recently purchased the account panel from this developer and wanted to leave a positive review.   The transaction was smooth, and the developer demonstrated exceptional professionalism throughout the process.   What truly sets them apart is their outstanding post-sale support. They are responsive, patient, and genuinely helpful when addressing questions or issues. It's clear they care about their customers' experience beyond just the initial sale.   I am thoroughly satisfied and grateful for the service. This is a trustworthy seller who provides real value through both a quality product and reliable support. 100% recommended."
    • 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
  • 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..