Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Flyff > Flyff Private Server
You last visited: Today at 13:14

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

Advertisement



PVP Ranking System Frage

Discussion on PVP Ranking System Frage within the Flyff Private Server forum part of the Flyff category.

Reply
 
Old   #1
 
elite*gold: 30
Join Date: May 2011
Posts: 521
Received Thanks: 69
PVP Ranking System Frage

hey leute

ich benutzte die Source von Pixelfehler und wollt frage wie ich das HintergrundBild beim PvP Ranking da ändern kann?(Das wo Damned Flyff steht und wo der Behemoth ist )

Bitte um Hilfe
Crystal-Craft is offline  
Old 02/05/2012, 10:13   #2
 
elite*gold: 0
Join Date: Feb 2012
Posts: 47
Received Thanks: 15
Such mal im Theme Ordner, vielleicht findest du was bin auch gerade dabei


Bin mir nicht sicher ob es da ist ...
Royal© is offline  
Old 02/05/2012, 10:20   #3
 
elite*gold: 9
Join Date: Oct 2011
Posts: 147
Received Thanks: 106
Theme Ordner pvpRanking.tga und such im Source.
Krawallbrüder is offline  
Old 02/05/2012, 10:39   #4
 
elite*gold: 255
Join Date: Mar 2008
Posts: 2,184
Received Thanks: 978
Quote:
Originally Posted by Krawallbrüder View Post
Theme Ordner pvpRanking.tga und such im Source.
Einfach die Pixel beibehalten und neuen Kasten machen und als .tga abspeichern.Bin jedoch nicht sicher.
Bloodyrain™ is offline  
Old 02/05/2012, 10:41   #5
 
elite*gold: 30
Join Date: May 2011
Posts: 521
Received Thanks: 69
hab ich grad teste es gleich

danke
Crystal-Craft is offline  
Old 02/05/2012, 11:25   #6
 
trashee09's Avatar
 
elite*gold: 0
Join Date: Aug 2005
Posts: 231
Received Thanks: 66
Quote:
Originally Posted by Krawallbrüder View Post
Theme Ordner pvpRanking.tga und such im Source.
search:
Code:
if( m_bDraw )
{
int Posxstart=g_Option.m_nResWidth-242;
int Posystart=215;

p2DRender->RenderFillRect(CRect( g_Option.m_nResWidth-242, 176, g_Option.m_nResWidth-10, g_Option.m_nResHeight-40), 0xD0222222,0xD0222222,0x1044444,0x1044444);


DWORD dwNameColor =D3DCOLOR_TEMP( 210, 255, 255, 250); //0xffffff7f - yellow
DWORD dwPlaceColor =D3DCOLOR_TEMP( 255,31 , 153, 193); //0xffffff7f - yellow // its in reverse
DWORD dwDeathsColor =D3DCOLOR_TEMP( 255,0, 0, 170); //0xffffff7f - yellow // its in reverse
DWORD dwKillsColor =D3DCOLOR_TEMP( 255,0, 160, 0); //0xffffff7f - yellow // its in reverse

p2DRender->TextOut(Posxstart+15,Posystart-13,"#", 0xFFEEEEEE );
p2DRender->TextOut(Posxstart+48,Posystart-13,"Name", 0xFFEEEEEE );
p2DRender->TextOut(Posxstart+110,Posystart-13,"Kills", 0xFFEEEEEE );
p2DRender->TextOut(Posxstart+140,Posystart-13,"Deaths", 0xFFEEEEEE );
p2DRender->TextOut(Posxstart+190,Posystart-13,"K/D", 0xFFEEEEEE );
p2DRender->TextOut(Posxstart+10,Posystart-10,"______________________________", 0xFFEEEEEE );
for( int i=0; i < m_nUsersOnline; i++)
{
if( strlen(m_szArenaUserName) > 10 )
{
m_szArenaUserName[10]='.';
m_szArenaUserName[9]='.';
}

p2DRender->TextOut(Posxstart+117,Posystart+5,m_nArenaKills, dwKillsColor );
p2DRender->TextOut(Posxstart+153,Posystart+5,m_nArenaDeaths, dwDeathsColor );
p2DRender->TextOut(Posxstart+12,Posystart+5,i, dwPlaceColor); //place/username
p2DRender->TextOut(Posxstart+48,Posystart+5,m_szArenaUserName, dwNameColor);

float fkd = (m_nArenaDeaths > 0 ? ((float)m_nArenaKills/(float)m_nArenaDeaths) : (float)m_nArenaKills );

CString str;
str.Format( "%.2f", fkd );
p2DRender->TextOut(Posxstart+190,Posystart+5, str , 0xFFEEEEEE );

Posystart = Posystart+13;

}
}
then replace this

Code:
if( m_bDraw )
{

DWORD COLOR =D3DCOLOR_TEMP( 210, 255, 255, 250); //0xffffff7f - yellow

m_pTexArenaSystemImage=CWndBase::m_textureMng.AddTexture( g_Neuz.m_pd3dDevice, MakePath( DIR_THEME, "[B][COLOR="Red"][SIZE="5"]PVP_SCORE.tga[/SIZE][/COLOR][/B]"), 0xffff00ff);
m_pTexArenaSystemImage->Render( p2DRender, CPoint( 255, 255 ) );
int nPos = 260;
for( int i = 0; i < BlaCount; i++ )
{
p2DRender->TextOut( 260, nPos, Nom, COLOR );
p2DRender->TextOut( 280, nPos, Tuée, COLOR );
p2DRender->TextOut( 300, nPos, Mort, COLOR );
nPos += 12;
}
for( int i=0; i < m_nUsersOnline; i++)
{
if( strlen(m_szArenaUserName) > 10 )
{
m_szArenaUserName[10]='.';
m_szArenaUserName[9]='.';
}
p2DRender->TextOut( 300,nPos,m_szArenaUserName, COLOR);
p2DRender->TextOut( 320, nPos,m_nArenaKills, COLOR);
p2DRender->TextOut( 340, nPos,m_nArenaDeaths, COLOR );
float fkd = (m_nArenaDeaths > 0 ? ((float)m_nArenaKills/(float)m_nArenaDeaths) : (float)m_nArenaKills );

nPos = nPos+13;

}

}
then tenen!!




trashee09 is offline  
Thanks
1 User
Old 02/05/2012, 14:13   #7
 
elite*gold: 0
Join Date: Dec 2008
Posts: 223
Received Thanks: 18
Ich drücke TAB aber sehe nichts in der PVP ... woran liegts ?
manuscha95 is offline  
Old 02/05/2012, 16:39   #8
 
elite*gold: 30
Join Date: May 2011
Posts: 521
Received Thanks: 69
die neuz compilen NICHT die die schon im client wahr nehmen
Crystal-Craft is offline  
Old 02/05/2012, 16:54   #9
 
elite*gold: 0
Join Date: Dec 2008
Posts: 223
Received Thanks: 18
habe ich ...
manuscha95 is offline  
Reply


Similar Threads Similar Threads
[Frage] Luckyshot System
11/25/2011 - WarRock - 7 Replies
Hey Com, ich habe eine frage, wie funktioniert das System des Luckyshots? Also g1 credits system^^
Frage zu GTA IV / System & co.
07/03/2011 - Grand Theft Auto - 5 Replies
Hallo Leute, wollte mal fragen ob es möglich ist GTA IV auf meinem Laptop zu spielen : Daten : i3 mit 2x2,1 Ghz . 4 GB DDR3 Ram 1 GB Geforce GT 520M 200GB Freier Speicher
Clan SysTem (FRAGE)
04/02/2010 - WarRock - 15 Replies
Also.. wäre es nicht eine Möglichkeit, dass wenn das Clansystem rauskommt, dass man dann einen E*PvPers Clan erstellt? natürlich mit dem E*PvP Zeichen (:
Ranking system
10/17/2007 - General Gaming Discussion - 3 Replies
wirds eins geben so n ähnliches wie in wow mit m armory? wenn jemand bescheid weiß posten pls :D
Frage zur System.mrs
06/17/2006 - GunZ - 2 Replies
Hi also ich habe ne frage zu System.mrs wie soll man die denn einstzen denn ich bin dann immer nackt und so nach 5 minuten bekomme ich ein Error. Wäre euch dankbar Mgf.Saint90



All times are GMT +2. The time now is 13:14.


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.