Jump to content
Sign in to follow this  
Home

In game mall password

Recommended Posts

Hello @Home!

 

To remove it you could try something like :

 

1: remove the popup password from your client,

//-- find
void CDoublePwdMgr::ShowDoublePwdForm()
{
  //-- close all forms
  CloseAllForm();
  
  //-- sent the store open packet ( empty )
  CS_StoreOpenAsk("");
  
  //-- remove useless code under CS_StoreOpenAsk
}

 

2: bypass the requested packet from your client at your gameserver

//-- find
	case CMD_CM_STORE_OPEN_ASK:
		{
			const char *szPwd = READ_STRING(pk);
			
			//-- ... more code here ...

			//-- lookup for the password condition:
			if((szPwd2[0] == 0) || (!strcmp(szPwd, szPwd2)))

			//-- and remove it
			if(true)

 

if were looking for a binary patch, I could try it later =)

  • Like 1

Discord: andresc

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Sign in to follow this  

×
×
  • Create New...