TITLE NEUZ

10/17/2018 07:15 matonskie23#1
i try to add __NEUZ_CHAR_TITLE but i got this when i compile it.
can i ask where should i gonna decleard it?
Sorry for noob Question
[Only registered and activated users can see links. Click Here To Register...]
10/17/2018 07:21 -Valor#2
VersionCommon.h
10/17/2018 07:24 matonskie23#3
but its already define in version common .
10/17/2018 07:33 -Valor#4
Its a variable, place text behind it between quotes “”
10/17/2018 07:37 matonskie23#5
like this?
[Only registered and activated users can see links. Click Here To Register...]

i try it but still give error
10/17/2018 08:43 Tweeney#6
Versioncommon.h

Code:
#define NEUZ_TITLE					"FLYFF"													//| NEUZ TITLE
#define NEUZ_TITLE_IGN				"FLYFF - IGN: " + strTitle + " "						//| NEUZ TITLE WITH IGN
DPClient.cpp

Code:
	CString strTitle = pMover->GetName();
	if (strTitle)
		strTitle = NEUZ_TITLE_IGN;
	else
		strTitle = NEUZ_TITLE;
	SetWindowText(CWndBase::m_hWnd, strTitle);
10/17/2018 08:59 matonskie23#7
Quote:
Originally Posted by Tweeney View Post
Versioncommon.h

Code:
#define NEUZ_TITLE					"FLYFF"													//| NEUZ TITLE
#define NEUZ_TITLE_IGN				"FLYFF - IGN: " + strTitle + " "						//| NEUZ TITLE WITH IGN
DPClient.cpp

Code:
	CString strTitle = pMover->GetName();
	if (strTitle)
		strTitle = NEUZ_TITLE_IGN;
	else
		strTitle = NEUZ_TITLE;
	SetWindowText(CWndBase::m_hWnd, strTitle);
Thanks its work now :)
More power for you :feelsgoodman:
10/17/2018 13:02 Tweeney#8
There is a "Thanks" Button for that ^_^