Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Flyff > Flyff Private Server
You last visited: Today at 18:17

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



nRevivalLayer-v14 source

Discussion on nRevivalLayer-v14 source within the Flyff Private Server forum part of the Flyff category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Oct 2010
Posts: 156
Received Thanks: 17
nRevivalLayer-v14 source

huhu bin gerade am v14 source basteln... bekomme folgende errors nicht weg
Hoffe jemand kann mir helfen x:
.::*[D][A][N][I]*::. is offline  
Old 01/20/2013, 19:52   #2
ベトナム警察




 
Lumi's Avatar
 
elite*gold: 0
The Black Market: 517/0/0
Join Date: Jan 2012
Posts: 16,498
Received Thanks: 3,525
nRevivalLayer deklarieren.
Lumi is offline  
Old 01/20/2013, 19:53   #3

 
Crowley™'s Avatar
 
elite*gold: 5
Join Date: Oct 2012
Posts: 1,335
Received Thanks: 505
Also dieser Error
Code:
_Interface\WndMessenger.cpp(603): error C2065: 'nRevivalLayer' : undeclared identifier
sagt dir das nRevivalLayer nicht deklariert ist. Einfach deklarieren und dann sollte er Error behoben sein.
Crowley™ is offline  
Old 01/20/2013, 20:03   #4
 
elite*gold: 0
Join Date: Oct 2012
Posts: 577
Received Thanks: 139
sagt schon alles "undeclared identifier" ?
ArakiLP is offline  
Thanks
1 User
Old 01/20/2013, 20:56   #5
 
elite*gold: 0
Join Date: Oct 2010
Posts: 156
Received Thanks: 17
danke so weit war ich auch nur finde ich nicht wo ich das deklarieren muss X:
.::*[D][A][N][I]*::. is offline  
Old 01/20/2013, 20:58   #6

 
Crowley™'s Avatar
 
elite*gold: 5
Join Date: Oct 2012
Posts: 1,335
Received Thanks: 505
Quote:
Originally Posted by .::*[D][A][N][I]*::. View Post
danke so weit war ich auch nur finde ich nicht wo ich das deklarieren muss X:
Sollte in der mover.h sein.
mfg. Crowley
Crowley™ is offline  
Old 01/20/2013, 21:01   #7
 
elite*gold: 0
Join Date: Oct 2012
Posts: 577
Received Thanks: 139
musst du in der mover.h machen //dreck....
ArakiLP is offline  
Old 01/20/2013, 21:04   #8
 
Мentus's Avatar
 
elite*gold: 30
Join Date: Sep 2012
Posts: 426
Received Thanks: 1,021
Quote:
Originally Posted by <Crowley> View Post
Sollte in der mover.h sein.
mfg. Crowley
Öh, welcher Sinn hätte die Variable in dem Header?

Code:
void CWndMessengerEx::OnDraw( C2DRender* p2DRender )
Suche nach..

Code:
#if __VER >= 15 // __CAMPUS
Code:
#if __VER >= 15 // __CAMPUS
	CWndTabCtrl* pWndTabCtrl = (CWndTabCtrl*)GetDlgItem( WIDC_TABCTRL1 );
	if( pWndTabCtrl == NULL )
		return;
	if( pWndTabCtrl->GetCurSel() == 2 )
	{
		CString strCampusPoint = _T( "" );
		strCampusPoint.Format( prj.GetText( TID_GAME_CAMPUS_POINTS ), g_pPlayer->GetCampusPoint() );
		p2DRender->TextOut( 190, 20, 1, 1, strCampusPoint, 0xff606060 );
	}
	else
	{
		CString strServerName = _T( "" );
		strServerName.Format( "%s", g_dpCertified.GetServerName( g_Option.m_nSer ) );
		if( strServerName.GetLength() > 18 ) 
		{
			int	nReduceCount = 0;

			for( nReduceCount = 0; nReduceCount < 18; )
			{
				if( IsDBCSLeadByte( strServerName[ nReduceCount ] ) )
					nReduceCount += 2;
				else
					++nReduceCount;
			}
			strServerName = strServerName.Left( nReduceCount );
			strServerName += "...";
		}
		p2DRender->TextOut( 170, 13, 1, 1, strServerName, 0xff606060 );

		//ä³Î Á¤º¸
		LPSERVER_DESC pServerDesc = NULL;
		int nCount = 0;
		for( int j = 0; j < (int)( g_dpCertified.m_dwSizeofServerset ); ++j )
		{
			if( g_dpCertified.m_aServerset[ j ].dwParent == NULL_ID )
			{
				if(nCount++ == g_Option.m_nSer)
					pServerDesc = g_dpCertified.m_aServerset + j;
			}
			if( g_dpCertified.m_aServerset[ j ].dwParent != NULL_ID && g_dpCertified.m_aServerset[ j ].lEnable != 0L )
			{
				if( pServerDesc != NULL && g_dpCertified.m_aServerset[ j ].dwParent == pServerDesc->dwID )
				{
					strServerName.Format( "%s", g_dpCertified.m_aServerset[ j + g_Option.m_nMSer ].lpName );
					if( strServerName.GetLength() > 18 ) 
					{
						int	nReduceCount = 0;

						for( nReduceCount = 0; nReduceCount < 18; )
						{
							if( IsDBCSLeadByte( strServerName[ nReduceCount ] ) )
								nReduceCount += 2;
							else
								++nReduceCount;
						}
						strServerName = strServerName.Left( nReduceCount );
						strServerName += "...";
					}

					p2DRender->TextOut( 170, 27, 1, 1, strServerName, 0xff606060 );
					j = g_dpCertified.m_dwSizeofServerset;
				}
			}
		}
	}
#else // __CAMPUS
	//¼*¹ö Á¤º¸
	CString strServerName;
	strServerName.Format( "%s", g_dpCertified.GetServerName(g_Option.m_nSer) );
	if( strServerName.GetLength() > 18 ) 
	{
		int	nReduceCount = 0;

		for( nReduceCount=0; nReduceCount<18; )
		{
			if( IsDBCSLeadByte( strServerName[ nReduceCount ] ) )
				nReduceCount+=2;
			else
				nReduceCount++;
		}
		strServerName = strServerName.Left( nReduceCount );
		strServerName += "...";
	}
	p2DRender->TextOut( 170, 13, 1, 1, strServerName, 0xff606060 );

	//ä³Î Á¤º¸
	LPSERVER_DESC pServerDesc = NULL;
	int nCount = 0;
	for( int j = 0; j < g_dpCertified.m_dwSizeofServerset; j++ )
	{
		if(g_dpCertified.m_aServerset[j].dwParent == NULL_ID)
		{
			if(nCount++ == g_Option.m_nSer)
				pServerDesc = g_dpCertified.m_aServerset + j;
		}
		if(g_dpCertified.m_aServerset[j].dwParent != NULL_ID && g_dpCertified.m_aServerset[j].lEnable != 0L)
		{
			if(pServerDesc != NULL && g_dpCertified.m_aServerset[j].dwParent == pServerDesc->dwID)
			{
				strServerName.Format( "%s", g_dpCertified.m_aServerset[j+g_Option.m_nMSer].lpName );
				if( strServerName.GetLength() > 18 ) 
				{
					int	nReduceCount = 0;
					int	nRevivalLayer = 0;

					for( nRevivalLayer=0; nRevivalLayer<18; )
					{
						if( IsDBCSLeadByte( strServerName[ nRevivalLayer ] ) )
							nRevivalLayer+=2;
						else
							nRevivalLayer++;
					}
					strServerName = strServerName.Left( nRevivalLayer );
					strServerName += "...";
				}
				p2DRender->TextOut( 170, 27, 1, 1, strServerName, 0xff606060 );

				j = g_dpCertified.m_dwSizeofServerset;
			}
		}
	}
#endif // __CAMPUS
Мentus is offline  
Thanks
2 Users
Old 01/20/2013, 21:06   #9
 
elite*gold: 0
Join Date: Oct 2010
Posts: 156
Received Thanks: 17
oh danke hat sich wohl erledigt ^^ aus dem v15 muss ich 14 machen ja?
habs danke ;3 und der andere fehler? x:
.::*[D][A][N][I]*::. is offline  
Old 01/21/2013, 03:24   #10
 
elite*gold: 1
Join Date: Jun 2011
Posts: 344
Received Thanks: 326
Frag mich doch ICQ wie immer xd
world.h
unter
CLinkMap m_linkMap;
#endif // __LAYER_1015
das:
public:
void Invalidate( int nLayer ) { m_linkMap.Invalidate( nLayer ); }
Zoeybird is offline  
Old 01/21/2013, 15:53   #11
 
elite*gold: 0
Join Date: Oct 2010
Posts: 156
Received Thanks: 17
klappt leider nicht x=
.::*[D][A][N][I]*::. is offline  
Reply


Similar Threads Similar Threads
[S] Mani/source Admin installierer + Mod [Counter strike Source] [B] 170eg
08/31/2012 - elite*gold Trading - 3 Replies
Yo. Ich brauche jemanden der mir Mani oder Source Admin Plugin auf mein Css server installiert, und dazu noch ein Mod. Am besten alles über Teamviewer. biete 170eg.
[Vk] Steam Acc mit:Counter Strike Source, Css Beta ; Day of Deafeat Source ;+mehr!
07/29/2011 - Counter-Strike Trading - 6 Replies
Folgende Spiele sind Vorhanden:Steam Acc mit:Counter Strike Source, Css Beta ; Day of Deafeat Source ;Half Life 2 Deathmatch;Half Life 2 Loast CoastAlle unbanned) Screens:ImageShack® - Online Photo and Video Hosting Suche Psc/Paypal oder ANDERE Steam Accs ,zahle Extra!
[WTS] Steam ACC - Counter Strike Source, Day of Defeat: Source und Half-Life 2: Death
12/12/2010 - Counter-Strike Trading - 1 Replies
Delete.
[Release]How To Make Tq Source Work + Working Source + Server ByBass + Commands
12/08/2008 - CO2 PServer Guides & Releases - 15 Replies
1: How To Make The Server Work In fact, before other people did not just let ACC now with hi EACC Columbia landing on the settlement of the issue, and the rest is our own how to improve the content of those interested can improve the next. MY MY set and the same. INI MAP INI files and MAP with the client-to-date coverage of the account. server.dat ! And then as long as the client will be able to modify server.dat! 127.0.0.1 192.168.0.1 192.168.1.1 IP。 Please do generally use...



All times are GMT +1. The time now is 18:17.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.