Register for your free account! | Forgot your password?

You last visited: Today at 02:06

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

Advertisement



[Source] Hilfe.

Discussion on [Source] Hilfe. within the Flyff Private Server forum part of the Flyff category.

Reply
 
Old 12/18/2011, 23:02   #16
 
elite*gold: 0
Join Date: Sep 2009
Posts: 125
Received Thanks: 7
warum Res Manager ?
Inami123 is offline  
Old 12/18/2011, 23:07   #17
 
Barney <3's Avatar
 
elite*gold: 0
Join Date: Dec 2011
Posts: 33
Received Thanks: 2
Oder wie finde ich die Datei ;o
Barney <3 is offline  
Old 12/19/2011, 00:01   #18
 
elite*gold: 455
Join Date: Jun 2009
Posts: 1,601
Received Thanks: 1,103
Quote:
Originally Posted by Inami123 View Post
Sind nicht hier die Icons ?

EDIT: Die müssen normal ohne // sein nicht ?
Code:
		if(checkhero == LEGEND_CLASS_MASTER && m_nLevel >= 60 && m_nLevel <= 120)
		{
			 if(m_nLevel >= 60 && m_nLevel < 70)
				strPath = MakePath( DIR_ICON, "icon_Expert1.dds");
				pTexture = g_Neuz.m_pMasterIcon[0];
			 if(m_nLevel >= 70 && m_nLevel < 80)
				strPath = MakePath( DIR_ICON, "icon_Expert2.dds");
				pTexture = g_Neuz.m_pMasterIcon[1];
			 if(m_nLevel >= 80 && m_nLevel < 90)
				strPath = MakePath( DIR_ICON, "icon_Expert3.dds");
				pTexture = g_Neuz.m_pMasterIcon[2];
			 if(m_nLevel >= 90 && m_nLevel < 100)
				strPath = MakePath( DIR_ICON, "icon_Expert4.dds");
				pTexture = g_Neuz.m_pMasterIcon[3];
			 if(m_nLevel >= 100 && m_nLevel < 110)
				strPath = MakePath( DIR_ICON, "icon_Expert5.dds");
				pTexture = g_Neuz.m_pMasterIcon[4];
			 if(m_nLevel >= 110 && m_nLevel <= 120)
				strPath = MakePath( DIR_ICON, "icon_Expert6.dds");
				pTexture = g_Neuz.m_pMasterIcon[5];
Flash! is offline  
Old 12/19/2011, 15:30   #19
 
elite*gold: 0
Join Date: Sep 2009
Posts: 125
Received Thanks: 7
Marvin muss da noch was raus ?

Quote:
#if __VER >= 10 // __CSC_VER9_1
//Àü½Â ¹× ¿µ¿õ ¾ÆÀÌÄÜ Ç¥½Ã Ãß°¡.
point.x = (LONG)( vOut.x );
point.y = (LONG)( vOut.y );
MakeEven( point.x );
//pd3dDevice->SetRenderState( D3DRS_DESTBLEND, D3DBLEND_ZERO );
pd3dDevice->SetRenderState( D3DRS_SRCBLEND, D3DBLEND_SRCALPHA );
pd3dDevice->SetRenderState( D3DRS_DESTBLEND, D3DBLEND_INVSRCALPHA );
pd3dDevice->SetRenderState( D3DRS_LIGHTING, FALSE );
pd3dDevice->SetRenderState( D3DRS_FOGENABLE, FALSE );

if(!bSkip && IsPlayer())
{
BYTE checkhero = GetLegendChar();
//CTexture* pTexture;
CString strPath;
CSize cs1 = pFont->GetTextExtent( szName );
CSize cs2;

if(pGuild != NULL)
{
cs2 = pFont->GetTextExtent( pGuild->m_szGuild );

if( cs1.cx > cs2.cx )
point.x += cs1.cx / 2;
else
point.x += cs2.cx / 2;
}
else
point.x += cs1.cx / 2;

if(checkhero == LEGEND_CLASS_MASTER && m_nLevel >= 60 && m_nLevel <= 120)
{
if(m_nLevel >= 60 && m_nLevel < 70)
strPath = MakePath( DIR_ICON, "icon_Expert1.dds");
pTexture = g_Neuz.m_pMasterIcon[0];
if(m_nLevel >= 70 && m_nLevel < 80)
strPath = MakePath( DIR_ICON, "icon_Expert2.dds");
pTexture = g_Neuz.m_pMasterIcon[1];
if(m_nLevel >= 80 && m_nLevel < 90)
strPath = MakePath( DIR_ICON, "icon_Expert3.dds");
pTexture = g_Neuz.m_pMasterIcon[2];
if(m_nLevel >= 90 && m_nLevel < 100)
strPath = MakePath( DIR_ICON, "icon_Expert4.dds");
pTexture = g_Neuz.m_pMasterIcon[3];
if(m_nLevel >= 100 && m_nLevel < 110)
strPath = MakePath( DIR_ICON, "icon_Expert5.dds");
pTexture = g_Neuz.m_pMasterIcon[4];
if(m_nLevel >= 110 && m_nLevel <= 120)
strPath = MakePath( DIR_ICON, "icon_Expert6.dds");
pTexture = g_Neuz.m_pMasterIcon[5];

//pTexture = CWndBase::m_textureMng.AddTexture( g_Neuz.m_pd3dDevice, strPath, 0xffff00ff );
if(pTexture != NULL)
{
point.y -= pTexture->m_size.cy + 5;
pTexture->Render( &g_Neuz.m_2DRender, point );
}
}
else if(checkhero == LEGEND_CLASS_HERO ) //¿µ¿õÀÏ °æ¿ì.
{
//strPath = MakePath( DIR_ICON, "icon_Hero.dds");
//pTexture = CWndBase::m_textureMng.AddTexture( g_Neuz.m_pd3dDevice, strPath, 0xffff00ff );
pTexture = g_Neuz.m_pHeroIcon;
if(pTexture != NULL)
{
point.y -= pTexture->m_size.cy + 5;
pTexture->Render( &g_Neuz.m_2DRender, point );
}
}
else if(checkhero == LEGEND_CLASS_LEGEND_HERO) //¿µ¿õÀÏ °æ¿ì.
{
strPath = MakePath( DIR_ICON, "icon_Hero.png");
pTexture = CWndBase::m_textureMng.AddTexture( g_Neuz.m_pd3dDevice, strPath, 0xffff00ff );
//pTexture = g_Neuz.m_pHeroIcon;
if(pTexture != NULL)
{
point.y -= pTexture->m_size.cy + 5;
pTexture->Render( &g_Neuz.m_2DRender, point );
}
}*/
}


//pd3dDevice->SetRenderState(D3DRS_DESTBLEND,D3DBLEND_INVSRCALP HA);
#endif //__CSC_VER9_1
Inami123 is offline  
Old 12/19/2011, 15:42   #20
 
elite*gold: 455
Join Date: Jun 2009
Posts: 1,601
Received Thanks: 1,103
Quote:
Originally Posted by Inami123 View Post
Marvin muss da noch was raus ?
Hier haste einfach mein Code, so funkzt alles:

Code:
#if __VER >= 10 // __CSC_VER9_1
	point.x = (LONG)( vOut.x );
	point.y = (LONG)( vOut.y );
	MakeEven( point.x );
	pd3dDevice->SetRenderState( D3DRS_DESTBLEND, D3DBLEND_ZERO );
	pd3dDevice->SetRenderState( D3DRS_SRCBLEND,  D3DBLEND_SRCALPHA );
	pd3dDevice->SetRenderState( D3DRS_DESTBLEND, D3DBLEND_INVSRCALPHA );
	pd3dDevice->SetRenderState( D3DRS_LIGHTING, FALSE );
	pd3dDevice->SetRenderState( D3DRS_FOGENABLE, FALSE );
	
	if(!bSkip && IsPlayer())
	{
		BYTE checkhero = GetLegendChar();
		CTexture* pTexture;
		CString strPath;
		CSize cs1 = pFont->GetTextExtent( szName );
		CSize cs2;
		
		if(pGuild != NULL)
		{
			cs2 = pFont->GetTextExtent( pGuild->m_szGuild );

			if( cs1.cx > cs2.cx )
				point.x += cs1.cx / 2;
			else
				point.x += cs2.cx / 2;
		}
		else
			point.x += cs1.cx / 2;
	
		if(checkhero == LEGEND_CLASS_MASTER && m_nLevel >= 60 && m_nLevel <= 120)
		{
			 if(m_nLevel >= 60 && m_nLevel < 70)
				strPath = MakePath( DIR_ICON, "icon_Expert1.dds");
				pTexture = g_Neuz.m_pMasterIcon[0];
			 if(m_nLevel >= 70 && m_nLevel < 80)
				strPath = MakePath( DIR_ICON, "icon_Expert2.dds");
				pTexture = g_Neuz.m_pMasterIcon[1];
			 if(m_nLevel >= 80 && m_nLevel < 90)
				strPath = MakePath( DIR_ICON, "icon_Expert3.dds");
				pTexture = g_Neuz.m_pMasterIcon[2];
			 if(m_nLevel >= 90 && m_nLevel < 100)
				strPath = MakePath( DIR_ICON, "icon_Expert4.dds");
				pTexture = g_Neuz.m_pMasterIcon[3];
			 if(m_nLevel >= 100 && m_nLevel < 110)
				strPath = MakePath( DIR_ICON, "icon_Expert5.dds");
				pTexture = g_Neuz.m_pMasterIcon[4];
			 if(m_nLevel >= 110 && m_nLevel <= 120)
				strPath = MakePath( DIR_ICON, "icon_Expert6.dds");
				pTexture = g_Neuz.m_pMasterIcon[5];

			pTexture = CWndBase::m_textureMng.AddTexture( g_Neuz.m_pd3dDevice, strPath, 0xffff00ff );
			if(pTexture != NULL)
			{
				point.y -= pTexture->m_size.cy + 5;
				pTexture->Render( &g_Neuz.m_2DRender, point );
			}
		}
		else if(checkhero == LEGEND_CLASS_HERO )
		{
			strPath = MakePath( DIR_ICON, "icon_Hero.dds");
			pTexture = CWndBase::m_textureMng.AddTexture( g_Neuz.m_pd3dDevice, strPath, 0xffff00ff );
			pTexture = g_Neuz.m_pHeroIcon;
			if(pTexture != NULL)
			{
				point.y -= pTexture->m_size.cy + 5;
				pTexture->Render( &g_Neuz.m_2DRender, point );
			}
		}
        else if(checkhero == LEGEND_CLASS_LEGEND_HERO) //¿µ¿õÀÏ °æ¿ì.
		{   
			strPath = MakePath( DIR_ICON, "icon_Hero.png");
			pTexture = CWndBase::m_textureMng.AddTexture( g_Neuz.m_pd3dDevice, strPath, 0xffff00ff );
            pTexture = g_Neuz.m_pHeroIcon;
			if(pTexture != NULL)
			{
				point.y -= pTexture->m_size.cy + 5;
				pTexture->Render( &g_Neuz.m_2DRender, point );
			}
		}
	}

	
	pd3dDevice->SetRenderState(D3DRS_DESTBLEND,D3DBLEND_INVSRCALPHA);
#endif //__CSC_VER9_1
Flash! is offline  
Thanks
1 User
Old 12/19/2011, 16:05   #21
 
elite*gold: 0
Join Date: Sep 2009
Posts: 125
Received Thanks: 7
Das mit den Icons hat jetzt geklappt, das mit dem Non-Master und alle Skills max nicht.
Du hast nicht zufällig auch die in Clean.. Sorry das ich so nerv aber ist wichtig /:
Aber Danke für den netten Support.
Inami123 is offline  
Old 12/20/2011, 18:39   #22
 
elite*gold: 0
Join Date: Sep 2009
Posts: 125
Received Thanks: 7
BTTU.
Inami123 is offline  
Old 12/21/2011, 18:48   #23
 
elite*gold: 0
Join Date: Sep 2009
Posts: 125
Received Thanks: 7
BTTU

#EDIT HÄNGT WARSCHEINLICH MIT NpcScript.cpp ZUSAMMEN.
Inami123 is offline  
Old 12/21/2011, 19:18   #24
 
Barney <3's Avatar
 
elite*gold: 0
Join Date: Dec 2011
Posts: 33
Received Thanks: 2
Keiner ne lösung ;o?
Barney <3 is offline  
Old 12/21/2011, 19:36   #25
 
elite*gold: 0
Join Date: Sep 2009
Posts: 125
Received Thanks: 7
Ich guck mir später nochmal die source an und vergleiche es mit den offi source bis dahin Tee trinken und an das Mappen gehen ...
Inami123 is offline  
Reply


Similar Threads Similar Threads
[Source Patcher]Hilfe
11/30/2011 - Flyff Private Server - 10 Replies
Hey, ich versuche gerade den patcher von flyff umzuarbeiten, doch beim compilen kommt das BetaPatchClient fatal error C1063: INTERNAL COMPILER ERROR Please choose the Technical Support command on the Visual C++ Help menu, or open the Technical Support help file for more information und das BetaPatchClient fatal error C1060: compiler is out of heap space jeweils beides 2x
CS:S Source SDK download Hilfe !
05/22/2011 - Counter-Strike - 3 Replies
HI... ich wollte mir so eben den Source SDK hammer editor bei Steam runterladen, aber er wird nicht gefunden D: Ich gehe unter tools und gib da in der suche Source sdk ein... er findet nichts auch unter hammer oder valve findet er nichts kann man den source sdk auch ohne steam runterladen ? Danke :)
Hilfe v16 Map Source von Sedrika
05/13/2011 - Flyff Private Server - 10 Replies
Ich habe das Problem das meine Karte unter M schwarz ist. Ich habe eig. alles gemacht was im Source Tut von Sedrika stand. ICh habe auch die 3Dateien in den Resource Files und in der data.res eingefügt.
hilfe bei glassWalls source
10/21/2010 - WarRock - 8 Replies
hi die glasswalls funktionieren nicht richtig bei mir-. es verschwindet alles WAS habe ich falsch gemacht? das ist der code void GlassWallsOn() { DWORD dwPlayerPtr = *(DWORD*)ADR_PLAYERPOINTER; if(dwPlayerPtr != 0) DWORD dwPlayerPtr = *(DWORD*)ADR_SERVERPOINTER; if(dwPlayerPtr != 0) {
[Hilfe] Pointer in Source
05/30/2010 - AutoIt - 15 Replies
Hey Community :D ich wollte mal fragen ob jemand von euch bereit wäre mir zu helfen :rolleyes: die Pointer in meine Source zu setzen ? :D Ich bin noch AutoIt Anfänger^^ beherrsche Grundkentnisse soweit aber hab mich soweit nicht mit gamehacking beschäftigt :P wer bereit ist soll mir entweder ne pn schicken oder mich in skype adden^^



All times are GMT +2. The time now is 02:06.


Powered by vBulletin®
Copyright ©2000 - 2024, 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 ©2024 elitepvpers All Rights Reserved.