Color Font Problem :(

09/05/2014 19:37 KillingSperm#1
i am so lazy on where to edit this one :( can anyone here know on which function to edit this:

[Only registered and activated users can see links. Click Here To Register...] <-- which funtion to edit the color of font?
[Only registered and activated users can see links. Click Here To Register...] <-- also this one :(
09/05/2014 20:06 Rhyder`#2
at EditString.h

Code:
	int Insert( int nIndex, TCHAR ch, DWORD dwColor = 0xffffffff, DWORD dwStyle = 0x00000000, WORD wCodePage = 0 );
	int Insert( int nIndex, LPCTSTR pstr, DWORD dwColor = 0xffffffff, DWORD dwStyle = 0x00000000, WORD wCodePage = 0 );
	int Delete( int nIndex, int nCount = 1 );
	int DeleteLine( int nBeginLine, int nCount  = 1 );
	TCHAR GetAt( int nIndex ) const;
	void SetAt( int nIndex, TCHAR ch, DWORD dwColor = 0xffffffff, DWORD dwStyle = 0x00000000, WORD wCodePage = 0 );
	void AddParsingString( LPCTSTR lpsz, DWORD dwColor = 0xffffffff, DWORD dwStyle = 0x00000000, WORD wCodePage = 0, DWORD dwPStyle = 0x00000001 );
#if __VER >= 15 // __IMPROVE_QUEST_INTERFACE
	void SetParsingString( LPCTSTR lpsz, DWORD dwColor = 0xffffffff, DWORD dwStyle = 0x00000000, WORD wCodePage = 0, DWORD dwPStyle = 0x00000001, BOOL bNoInitAlign = FALSE );
#else // __IMPROVE_QUEST_INTERFACE
	void SetParsingString( LPCTSTR lpsz, DWORD dwColor = 0xffffffff, DWORD dwStyle = 0x00000000, WORD wCodePage = 0, DWORD dwPStyle = 0x00000001 );
#endif // __IMPROVE_QUEST_INTERFACE
	void AddString( LPCTSTR lpsz, DWORD dwColor = 0xffffffff, DWORD dwStyle = 0x00000000, WORD wCodePage = 0 );
	void AddString( char ch, DWORD dwColor = 0xffffffff, DWORD dwStyle = 0x00000000, WORD wCodePage = 0 );
	void SetString( LPCTSTR lpsz, DWORD dwColor = 0xffffffff, DWORD dwStyle = 0x00000000, WORD wCodePage = 0 );
	void SetString( char* lpsz, DWORD dwColor = 0xffffffff, DWORD dwStyle = 0x00000000, WORD wCodePage = 0 );
From 0xff000000 to 0xffffffff
09/05/2014 20:12 KillingSperm#3
thank you

how about [Only registered and activated users can see links. Click Here To Register...] work with png file? can you tell me on how to do it