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

    • 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.
    • Good evening, I have a problem with the items+ when I enchant, for example, the armors, the weapons, all the stats are normal. When I put them on my inventory, the +4+5 etc. that I have done do not appear. The project is h5 with the salvation protocol. Can any expert help me fix it? Thanks in advance. some screens... this items is +12   https://prnt.sc/fh2i0pjCHDY_ https://prnt.sc/qc1kLl-S4hn6 https://prnt.sc/CTFw3HOdZDPz  
    • GRAND OPENING TODAY !!!  FROM - 10 OCTOBER 2025, FRIDAY, 20:00 +2GMT.
    • Grand Opening On 08/10/2025 Server Rates: Exp: x3 Sp: x3 Adena: x3 Items: x3 Spoil: x4 Quests Drop: x3 Rate in some quests: x2-x6 ENCHANT Weapons / Armor / Jewelry: Safe +3 Max +21/+20/+20 Rates of Enchant: Normal 70% Bless 80%, from +15 Normal 55% Bless 65% Server Commands: .menu .vote .npcinfo Augmentation: NGS : 5% Mid : 8% High: 10% Top: 15% Other: According to the concept of a Olympiad NCSoft. No Donate things affect the game balance. Bonuses for voting on TOP sites. / unstuck 2 minutes. Free Tp until lvl 40. According to the concept of a castle siege NCSoft. The maximum number of windows from one PC is 4 Buffs  Number of slots: 25 Number of debuff slots: 6 Duration of the buffs: Retail RAID/GRAND BOSSES Retail like. Rate Raid Drop Items = x2 Seven Signs: According to the concept of NCSoft. GM Donate Shop All items you need are there One shop all items B-A-S grade for Donation Coins Finery / Misc / Recipes / Quest and much more. Offline Shops Just exit your client when you have shop. Offline Max Days: 7 Offline Place: Only in Peace Zone Custom Vip / Hero for: 3, 10, 30 Days Vip Benefits Exp: x8 Sp: x8 Adena: x8 Items: x8 Spoil: x10 Quests: x8 Raid Drop Items: x3 Rate in some quests: x2-x6 And more in Vip Manager Join us and discover many more features in our server! https://l2doll.com/
    • Results don’t come instantly   Sometimes it feels like nothing is moving. You take small steps, and the results barely show. But it’s exactly these steps that build your tomorrow. Every day, every effort is an investment in yourself and your success. Patience isn’t about sitting and waiting for miracles—it’s about moving forward with confidence. Real victories take time, effort, and your constant determination. Don’t rush the process-the journey itself is valuable, and it’s what shapes results that last.   …The right energy always comes back. 💫 VibeSMS Website: https://vibe-sms.net/ Telegram channel: https://t.me/vibe_sms
  • 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