[REQUEST] Change Version ID

02/06/2014 20:00 Phaxy™#1
Hey buddys,

i would like to ask how i can change the Version ID of my TClient.
Hoping for helpful awnsers

Greetings

Phaxy
02/06/2014 20:05 glossypvp#2
TNetSender.cpp
Code:
void CTClientWnd::SendCS_LOGIN_REQ( CString strUserID, CString strPasswd, DWORD dwSiteCode)
{
	CPacket vMSG;

	WORD wVersion = 532; // << THIS LINE
	vMSG.SetID(CS_LOGIN_REQ)
		<< wVersion
		<< strUserID
		<< strPasswd
		<< theApp.m_dlCheckFile;

	if( CTNationOption::MODIFY_DIRECTLOGIN )
		vMSG << dwSiteCode;

	m_pTNet->Say(&vMSG);
}
Hope u got the answer :)
02/06/2014 20:39 Phaxy™#3
Quote:
Originally Posted by glossypvp View Post
TNetSender.h
Code:
void CTClientWnd::SendCS_LOGIN_REQ( CString strUserID, CString strPasswd, DWORD dwSiteCode)
{
	CPacket vMSG;

	WORD wVersion = 532; // << THIS LINE
	vMSG.SetID(CS_LOGIN_REQ)
		<< wVersion
		<< strUserID
		<< strPasswd
		<< theApp.m_dlCheckFile;

	if( CTNationOption::MODIFY_DIRECTLOGIN )
		vMSG << dwSiteCode;

	m_pTNet->Say(&vMSG);
}
Hope u got the answer :)
I just got TNetSender.cpp in my Source... isnt it that?
02/06/2014 21:44 PinkySwag#4
Yop,it is
02/06/2014 21:54 Phaxy™#5
Quote:
Originally Posted by RollienZ View Post
Yop,it is
Read PM please.