NPC Price Show

07/20/2018 14:28 nicksss03#1
Hi! I was wondering where to edit the NPC Price Description? Like it is now showing up..
Thanks!
07/20/2018 23:20 -Valor#2
Quote:
Originally Posted by nicksss03 View Post
Hi! I was wondering where to edit the NPC Price Description? Like it is now showing up..
Thanks!
Correct me if I'm wrong but I think,

WndManager.cpp ->

Code:
char szbuffer[1024];
_itoa( nCost, szbuffer, 10 );
str = GetNumberFormatEx(szbuffer);
strTemp.Format( prj.GetText(TID_GAME_TOOLTIP_COST2), str );
Or maybe your textClient.inc

Code:
TID_GAME_TOOLTIP_COST2 0xff99cc00
{
	IDS_TEXTCLIENT_INC_000982
}"
"IDS_TEXTCLIENT_INC_000982" inside textClient.txt

is empty?
07/21/2018 01:46 nicksss03#3
Quote:
Originally Posted by -Valor View Post
Correct me if I'm wrong but I think,

WndManager.cpp ->

Code:
char szbuffer[1024];
_itoa( nCost, szbuffer, 10 );
str = GetNumberFormatEx(szbuffer);
strTemp.Format( prj.GetText(TID_GAME_TOOLTIP_COST2), str );
Or maybe your textClient.inc

Code:
TID_GAME_TOOLTIP_COST2 0xff99cc00
{
	IDS_TEXTCLIENT_INC_000982
}"
"IDS_TEXTCLIENT_INC_000982" inside textClient.txt

is empty?
Thank you! Everything is fine, and I found that I am missing a codes.. thanks again!! love u!!
07/21/2018 14:57 -Valor#4
Quote:
Originally Posted by nicksss03 View Post
Thank you! Everything is fine, and I found that I am missing a codes.. thanks again!! love u!!
You're welcome, glad I could help you.