|
You last visited: Today at 05:17
Advertisement
[SOURCE]V19 title of windows
Discussion on [SOURCE]V19 title of windows within the Flyff PServer Guides & Releases forum part of the Flyff Private Server category.
12/09/2012, 18:31
|
#1
|
elite*gold: 0
Join Date: Mar 2011
Posts: 129
Received Thanks: 258
|
[SOURCE]V19 title of windows
I bring to you guys the titles of windows v19
I hope you enjoy
==================================
ITheme.cpp
==================================
search:
Code:
#ifdef __LANG_1013
PLANG_DATA pLangData = CLangMan::GetInstance()->GetLangData( ::GetLanguage() );
CD3DFont* pFont;
put down:
Code:
#ifdef __TITLE_WINDOWS_V19
pFont = new CD3DFont( _T("gulim"), 10, D3DFONT_BOLD );
pFont->m_nOutLine = 2;
pFont->m_dwColor = 0xffffffff;
pFont->m_dwBgColor = D3DCOLOR_ARGB( 255, 0, 0, 0 );
m_mapFont.SetAt( _T( "NewTitle"), pFont );
#endif//__TITLE_WINDOWS_V19
search:
Code:
m_mapFont.Lookup( _T("Arial Black9"), (void*&)m_pFontWndTitle );
put down:
Code:
#ifdef __TITLE_WINDOWS_V19
m_mapFont.Lookup( _T("NewTitle"), (void*&)m_pFontWndNewTitle );
#endif//__TITLE_WINDOWS_V19
==================================
ITheme.h
==================================
search:
Code:
CD3DFont* m_pFontWndTitle;
put down:
Code:
#ifdef __TITLE_WINDOWS_V19
CD3DFont* m_pFontWndNewTitle;
#endif//__TITLE_WINDOWS_V19
==================================
WndBase.cpp
==================================
go to:
Code:
void CWndBase::PaintFrame(C2DRender* p2DRender)
search:
Code:
CD3DFont* pOldFont = p2DRender->GetFont();
p2DRender->SetFont( CWndBase::m_Theme.m_pFontWndTitle );
p2DRender->TextOut( 10, 4, m_strTitle, m_dwColor );
p2DRender->SetFont( pOldFont );
replace with:
Code:
#ifdef __TITLE_WINDOWS_V19
CPoint newpoint;
CSize sizeTitle = p2DRender->m_pFont->GetTextExtent( m_strTitle );
CRect rect = GetWindowRect();
newpoint = (rect.Width() - sizeTitle.cx) / 2;
CD3DFont* pOldFont = p2DRender->GetFont();
p2DRender->SetFont( CWndBase::m_Theme.m_pFontWndNewTitle );
p2DRender->TextOut( newpoint.x , 8, m_strTitle, 0xffffffff );
p2DRender->SetFont( pOldFont );
#endif//__TITLE_WINDOWS_V19
==================================
Neuz VersionCommon.h
==================================
Code:
#define __TITLE_WINDOWS_V19
Codes 100% by me
Image:
|
|
|
12/09/2012, 18:47
|
#2
|
ベトナム警察
elite*gold: 0
Join Date: Jan 2012
Posts: 16,498
Received Thanks: 3,525
|
It looks nice, but it would be nice, if you upload the theme folder of this thing.
|
|
|
12/09/2012, 18:56
|
#3
|
elite*gold: 0
Join Date: Mar 2011
Posts: 129
Received Thanks: 258
|
Quote:
Originally Posted by Lumi'
It looks nice, but it would be nice, if you upload the theme folder of this thing.
|
Source
Resource for server
Theme
|
|
|
12/09/2012, 19:21
|
#4
|
elite*gold: 0
Join Date: Jul 2011
Posts: 28
Received Thanks: 4
|
Thank this is importtant for me
|
|
|
12/09/2012, 19:36
|
#5
|
TBM Head Mod
elite*gold: 28
Join Date: Oct 2012
Posts: 27,424
Received Thanks: 2,261
|
Thanks :3 Very Nice! 
Greetz Icetea
|
|
|
12/09/2012, 19:37
|
#6
|
elite*gold: 0
Join Date: Aug 2011
Posts: 369
Received Thanks: 36
|
really good!
|
|
|
12/14/2012, 17:53
|
#7
|
elite*gold: 0
Join Date: Mar 2011
Posts: 129
Received Thanks: 258
|
thanks
|
|
|
12/15/2012, 00:11
|
#8
|
elite*gold: 115
Join Date: Jan 2012
Posts: 1,156
Received Thanks: 894
|
The theme is incomplete please upload the buttons
error!!!
|
|
|
02/01/2013, 18:26
|
#9
|
elite*gold: 0
Join Date: Mar 2011
Posts: 129
Received Thanks: 258
|
you guys can swap rows:
Code:
pFont = new CD3DFont( _T("gulim"), 10, D3DFONT_BOLD );
pFont->m_nOutLine = 2;
pFont->m_dwColor = 0xffffffff;
pFont->m_dwBgColor = D3DCOLOR_ARGB( 255, 0, 0, 0 );
m_mapFont.SetAt( _T( "NewTitle"), pFont );
for:
Code:
pFont = new CD3DFont( _T("Verdana"), 9, D3DFONT_BOLD );
pFont->m_nOutLine = 1;
pFont->m_dwColor = D3DCOLOR_ARGB( 255, 238, 221, 130 );
pFont->m_dwBgColor = D3DCOLOR_ARGB( 255, 0, 0, 0 );
m_mapFont.SetAt( _T( "NewTitle"), pFont );
or: (usa flyff style)
Code:
pFont = new CD3DFont( _T("Verdana"), 9);
pFont->m_nOutLine = 1;
pFont->m_dwColor = D3DCOLOR_ARGB( 255, 238, 221, 130 );
pFont->m_dwBgColor = D3DCOLOR_ARGB( 255, 0, 0, 0 );
m_mapFont.SetAt( _T( "NewTitle"), pFont );
|
|
|
07/16/2013, 15:04
|
#10
|
elite*gold: 0
Join Date: Apr 2011
Posts: 98
Received Thanks: 3
|
should i edit the resdata to this code?
and if yes can someone bring me the code pls?
|
|
|
07/16/2013, 15:28
|
#11
|
elite*gold: 115
Join Date: Jan 2012
Posts: 1,156
Received Thanks: 894
|
Quote:
Originally Posted by amirshu
should i edit the resdata to this code?
and if yes can someone bring me the code pls?
|
no need to edit the resdata.inc
|
|
|
07/16/2013, 16:18
|
#12
|
elite*gold: 0
Join Date: Apr 2011
Posts: 98
Received Thanks: 3
|
Quote:
Originally Posted by jayjei14
no need to edit the resdata.inc
|
jayjay can you pls help me add the Vgold look to my blessed files?
my skype is amirshu
|
|
|
03/31/2016, 13:08
|
#13
|
elite*gold: 0
Join Date: Dec 2015
Posts: 10
Received Thanks: 0
|
Im having this error when i compile
ERROR C2146:syntax error : missing';' before identifier 'CD3DFont'
ERROR C2086: 'CD3DFONT *CTheme::m_pFontButton' : redefinition
I need help!
|
|
|
 |
Similar Threads
|
Does anyone have a 5165 or any other source/client for Windows 7 64Bit
01/07/2011 - Conquer Online 2 - 1 Replies
does anyone have a 5165 or 5095! -MOST want 5165!- source that works for 64-bit windows 7 please help me!
im running windows 7 ultimate 64Bit?
please help me out here, i rly need WORKING client and source for Windows 7 64Bit!
|
Does anyone have a 5165 or any other source/client for Windows 7 64Bit
01/03/2011 - CO2 Private Server - 10 Replies
does anyone have a 5165 or 5095! -MOST want 5165!- source that works for 64-bit windows 7 please help me!
im running windows 7 ultimate 64Bit?
please help me out here, i rly need WORKING client and source for Windows 7 64Bit!
|
[WTS] Account including all 4 campaigns + Wisdom Title [3] + Treasure title [near 3]
09/06/2009 - Guild Wars Trading - 6 Replies
:
Hi, I'm sellin an Account including all 3 campaigns & EOTN.
It has no characters on it except an PvP Elementalist.
There are some green items and materials on storage, and 11 golden rin relicts
It's not plaync-bounded!!
I'm open for offers. (ectos, zkeys, rare pets or rare items only)
Contact:
..: 195759396
|
[Question] Is there a working source for 64-bit Windows?
07/20/2009 - CO2 Private Server - 4 Replies
I recently tried to use one of the CO server sources here only to waste hours on it and find out the reason it wasn't working is because a couple of the files don't work on 64-bit Windows. If anyone knows how to solve the problem, or knows of a completed source that runs on 64-bit systems, please tell me. Thanks.
|
How edit topic title? New title.
09/01/2007 - Conquer Online 2 - 2 Replies
Since forum turned vbulletin, i cant edit topic title
|
All times are GMT +1. The time now is 05:17.
|
|