Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Some Text Modification(Source)

Status
Not open for further replies.
Skilled Illusionist
Joined
Dec 16, 2012
Messages
341
Reaction score
126
Some cpp modifications. So you don't need to hex the Game.exe/RanOnline.exe just to change to your desired name of your server. :)


Basic.cpp
Code:
{
		if ( !RANPARAM::VALIDIDPARAM() )
		{
			MessageBox ( NULL, "Invalid web account.", "error", MB_OK );
			return FALSE;
		}
	}

	#if defined(NDEBUG)
	if ( !bAPM )
	{
		MessageBox ( NULL, "Use Launcher To Play My Ran Online!", "Ran Online", MB_OK );[COLOR="#00FF00"]//modify[/COLOR]
		return FALSE;
	}

BasicWnd.cpp
Code:
/*
#ifdef CH_PARAM
	SetWindowText ( "Á÷ÐÇ»¨Ô°" );
#elif TW_PARAM
	SetWindowText ( "«i online" );
#elif HK_PARAM
	SetWindowText ( "«i online" );
#else */
	SetWindowText ( "Your Ran Online Title" );[COLOR="#00FF00"]//modify[/COLOR]
//#endif

BasicWndD3d.cpp
Code:
HRESULT hr = S_OK;

	hr = NLOADINGTHREAD::StartThreadLOAD ( &m_pd3dDevice, m_hWnd, ((CBasicApp*)AfxGetApp())->m_szAppPath, CString("loading_000.dds"),"Your Ran Online", true );[COLOR="#00FF00"]//modify[/COLOR]
	if( FAILED(hr) )	return E_FAIL;
 
Last edited:
Junior Spellweaver
Joined
May 15, 2013
Messages
182
Reaction score
6
They can also change the Game.exe name at the param.ini if they change the code.
Like this:
BasicWnd.cpp
#ifdef CH_PARAM
SetWindowText ( "Á÷ÐÇ»¨Ô°" );
#elif TW_PARAM
SetWindowText ( "«i online" );
#elif HK_PARAM
SetWindowText ( "«i online" );
#else
SetWindowText ( RANPARAM::Title ); <---- edit this
#endif

RANPARAM.cpp
TCHAR HelpAddress[STRING_NUM_128] = _T("\\data\\help\\help.htm");
// Áß±¹ :
TCHAR ItemShopAddress[STRING_NUM_128] = _T("about:blank");
TCHAR RPFDataPath[STRING_NUM_128] = _T("\\package\\data.rpf");
TCHAR RCCPassword[STRING_NUM_128] = _T("Hyouka");
TCHAR Title[STRING_NUM_128] = _T("RAN Online"); <-----add this

RANPARAM.h
extern TCHAR HelpAddress[STRING_NUM_128];
extern TCHAR ItemShopAddress[STRING_NUM_128];
extern TCHAR RPFDataPath[STRING_NUM_128];
extern TCHAR RCCPassword[STRING_NUM_128];
extern TCHAR Title[STRING_NUM_128]; <------ add this

Param.ini
[ETC OPTION]HelpAddress = \data\help\help.htm
HomePageAddress = 127.0.0.1
ItemShopAddress = 127.0.0.1
ItemShopHPAddress = 127.0.0.1
EventPageAddress = 127.0.0.1
RPFDataPath = \package\data.rpf
RCCPassword = sharelang
Title = Your RAN Name <----- add this
 
Last edited:
Status
Not open for further replies.
Back
Top