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

    • 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.
    • 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.
  • 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