|
You last visited: Today at 13:25
Advertisement
Item Font Text
Discussion on Item Font Text within the Flyff Private Server forum part of the Flyff category.
05/20/2015, 07:41
|
#1
|
elite*gold: 0
Join Date: Dec 2013
Posts: 80
Received Thanks: 4
|
Item Font Text
hello guys..
where can i edit the Font Text of this and i want to remove the Bold
Item Inventory FontText:
thanks in advance ^_^
|
|
|
05/20/2015, 14:59
|
#2
|
elite*gold: 0
Join Date: Jan 2009
Posts: 1,741
Received Thanks: 1,674
|
You should take a look into the propLang.inc
|
|
|
05/20/2015, 18:11
|
#3
|
elite*gold: 0
Join Date: Dec 2013
Posts: 80
Received Thanks: 4
|
im done editing the propLang.inc but only name font of player changed,nothing happen on my inventory item font text..
|
|
|
05/21/2015, 13:10
|
#4
|
elite*gold: 0
Join Date: Dec 2012
Posts: 239
Received Thanks: 33
|
Quote:
Originally Posted by Dark®©
im done editing the propLang.inc but only name font of player changed,nothing happen on my inventory item font text..
|
uhhmm try to check your itemctrl if im not wrong?..
|
|
|
05/22/2015, 13:49
|
#5
|
elite*gold: 0
Join Date: Dec 2014
Posts: 190
Received Thanks: 87
|
changing font ingame is in here
ITheme.cpp
find
PHP Code:
BOOL CTheme::LoadTheme( LPDIRECT3DDEVICE9 pd3dDevice, LPCTSTR lpszFileName)
under the
PHP Code:
PLANG_DATA pLangData = CLangMan::GetInstance()->GetLangData( ::GetLanguage() );
find the
PHP Code:
if( ::GetLanguage() == LANG_ENG )
corect me if i am wrong., change it the Arial into another font., change it what you want
PHP Code:
CD3DFont* pFont; // ÆùÆ® ·Îµå »ý¼º pFont = new CD3DFont( _T("Arial"), 9 );//, D3DFONT_BOLD ); //pFont->m_nOutLine = 3; m_mapFont.SetAt( _T( "gulim9"), pFont ); pFont = new CD3DFont( _T("Arial"), 8 );//, D3DFONT_BOLD ); //pFont->m_nOutLine = 3; m_mapFont.SetAt( _T( "gulim8"), pFont );
pFont = new CD3DFont( _T("Arial"), 13 );//, D3DFONT_BOLD ); //pFont->m_nOutLine = 3; m_mapFont.SetAt( _T( "gulim13"), pFont ); pFont = new CD3DFont( _T("Arial"), 9);//, D3DFONT_BOLD ); pFont->m_nOutLine = 2; pFont->m_dwColor = 0xffffffff; pFont->m_dwBgColor = D3DCOLOR_ARGB( 255, 217, 91, 51); m_mapFont.SetAt( _T( "Arial Black9"), pFont ); pFont = new CD3DFont( _T("Arial"), 9);//, D3DFONT_BOLD ); pFont->m_nOutLine = 2; pFont->m_dwColor = 0xffffffff; pFont->m_dwBgColor = D3DCOLOR_ARGB( 255, 60, 60, 60 ); m_mapFont.SetAt( _T( "FontWorld"), pFont ); pFont = new CD3DFont( _T("Arial"), 15 );//, D3DFONT_BOLD ); pFont->m_nOutLine = 2; pFont->m_dwColor = D3DCOLOR_ARGB( 255, 255, 255, 255); pFont->m_dwBgColor = D3DCOLOR_ARGB( 255, 40, 100, 220 ); pFont->m_dwFlags = D3DFONT_FILTERED; m_mapFont.SetAt( _T( "gulim20"), pFont );
#rene
|
|
|
05/22/2015, 14:44
|
#6
|
elite*gold: 0
Join Date: Dec 2013
Posts: 80
Received Thanks: 4
|
Quote:
Originally Posted by Zeljian
changing font ingame is in here
ITheme.cpp
find
PHP Code:
BOOL CTheme::LoadTheme( LPDIRECT3DDEVICE9 pd3dDevice, LPCTSTR lpszFileName)
under the
PHP Code:
PLANG_DATA pLangData = CLangMan::GetInstance()->GetLangData( ::GetLanguage() );
find the
PHP Code:
if( ::GetLanguage() == LANG_ENG )
corect me if i am wrong., change it the Arial into another font., change it what you want
PHP Code:
CD3DFont* pFont;
// ÆùÆ® ·Îµå »ý¼º
pFont = new CD3DFont( _T("Arial"), 9 );//, D3DFONT_BOLD );
//pFont->m_nOutLine = 3;
m_mapFont.SetAt( _T( "gulim9"), pFont );
pFont = new CD3DFont( _T("Arial"), 8 );//, D3DFONT_BOLD );
//pFont->m_nOutLine = 3;
m_mapFont.SetAt( _T( "gulim8"), pFont );
pFont = new CD3DFont( _T("Arial"), 13 );//, D3DFONT_BOLD );
//pFont->m_nOutLine = 3;
m_mapFont.SetAt( _T( "gulim13"), pFont );
pFont = new CD3DFont( _T("Arial"), 9);//, D3DFONT_BOLD );
pFont->m_nOutLine = 2;
pFont->m_dwColor = 0xffffffff;
pFont->m_dwBgColor = D3DCOLOR_ARGB( 255, 217, 91, 51);
m_mapFont.SetAt( _T( "Arial Black9"), pFont );
pFont = new CD3DFont( _T("Arial"), 9);//, D3DFONT_BOLD );
pFont->m_nOutLine = 2;
pFont->m_dwColor = 0xffffffff;
pFont->m_dwBgColor = D3DCOLOR_ARGB( 255, 60, 60, 60 );
m_mapFont.SetAt( _T( "FontWorld"), pFont );
pFont = new CD3DFont( _T("Arial"), 15 );//, D3DFONT_BOLD );
pFont->m_nOutLine = 2;
pFont->m_dwColor = D3DCOLOR_ARGB( 255, 255, 255, 255);
pFont->m_dwBgColor = D3DCOLOR_ARGB( 255, 40, 100, 220 );
pFont->m_dwFlags = D3DFONT_FILTERED;
m_mapFont.SetAt( _T( "gulim20"), pFont );
#rene
|
i already do that a few days dude. but nothing happen,. i need to change the font of the inventory item..i think that code you give is look like propLang.inc ..
Quote:
Originally Posted by macboyem07
uhhmm try to check your itemctrl if im not wrong?..
|
ok i try to chec :3
|
|
|
05/24/2015, 02:03
|
#7
|
elite*gold: 0
Join Date: Dec 2014
Posts: 190
Received Thanks: 87
|
If your files running v19 now i can give you the right line
|
|
|
Similar Threads
|
Font of Item Text and Tooltip
04/26/2013 - Flyff Private Server - 3 Replies
any one who know which part of Source and the Function to edit the font of this??
Picture:
.
1 ToolTip--> (FIXXED)
.
2 Item -->
http://img856.imageshack.us/img856/5715/aw1a.png
|
Wo ändere ich Item text? <.<
07/16/2010 - Metin2 Private Server - 1 Replies
Hey,
wo kann ich zum Beispiel bei einer Perle, den Text ändern : "Der wunderschöne Schatz aus dem inneren einer Perle" oder so :D
MFG
|
Wo Item Text ändern?
07/14/2010 - Metin2 Private Server - 0 Replies
Hey,
wo ändere ich den Text wenn man auf ein Item geht? Z.b. wenn ich auf eine Muschel gehe , steht dann ja "Der Schatz aus einer wunschönen Muschel" oder so ähnlich
MFG
|
Chat text font
07/18/2008 - Archlord - 0 Replies
Hi !
I've seen some screenshots from other ppl where they had a different text font than the standard. So i wondered how to change it because i would like to change it. Can anyone help?
Greetz,
Solid
|
All times are GMT +1. The time now is 13:32.
|
|