[Share]EP11 Source Code w/ Client

Skilled Illusionist
Joined
Dec 29, 2009
Messages
350
Reaction score
25
This source based on EP11 source code shared here and some dev modified/re-code it.



-Fix Seal Cards
-Fix Reform Card
-Tyranny Battle UI
-Tyranny Fix
-Latest Game Guard
-Etc


Update:
-Links Updated
-Fix Default Winner for Tyranny
-Movements
-Etc.




kenn14 - [Share]EP11 Source Code w/ Client - RaGEZONE Forums
 

Attachments

  • 19369434_1753561218004264_1390704391_o - [Share]EP11 Source Code w/ Client - RaGEZONE Forums
    19369434_1753561218004264_1390704391_o.webp
    95.2 KB · Views: 3,410
Last edited:
This source based on EP11 source code shared here and some dev modified/re-code it.


-Fix Seal Cards
-Tyranny Battle UI
-Tyranny Fix
-Latest Game Guard
-Etc




kenn14 - [Share]EP11 Source Code w/ Client - RaGEZONE Forums

just to clarify in this client include the fix tyranny map?
btw thank for sharing
 
sir ? how to compile without =include,=DX_include,=library,=DX_Lib\x86,=boost\lib ?
sorry im a newbie :8:

Up for this :) Thank's by the way :)
 
This source based on EP11 source code shared here and some dev modified/re-code it.


-Fix Seal Cards
-Tyranny Battle UI
-Tyranny Fix
-Latest Game Guard
-Etc




kenn14 - [Share]EP11 Source Code w/ Client - RaGEZONE Forums


Thank you sir ken :)
 
top 10 ranking button

add this in CPvPWindowDisplay.cpp

m_pButtonRanking( NULL ),

m_pButtonRanking = CreateTextButton( "PVP_BUTTON_RANKING", SCHOOLWAR_BUTTON_RANKING, (char*)ID2GAMEWORD("COMPETITION_CTF_BATTLE_TEXT",12));

case SCHOOLWAR_BUTTON_RANKING:
{
if ( CHECK_MOUSEIN_LBUPLIKE ( dwMsg ) )
{
if ( CInnerInterface::GetInstance().IsVisibleGroup( TOWER_RANKING_DISPLAY ) ) CInnerInterface::GetInstance().HideGroup ( TOWER_RANKING_DISPLAY);
else CInnerInterface::GetInstance().ShowGroupFocus( TOWER_RANKING_DISPLAY);
}
}break;

Cpvpwindowdisplay.h
SCHOOLWAR_BUTTON_RANKING,

CBasicTextButton* m_pButtonRanking;

GLGaeaClient.cpp

find: (inside case NET_MSG_GCTRL_TOWERWARS_SETWINSCHOOL_BRD:)
delete this
CInnerInterface::GetInstance().RefreshCTFRanking();
and add on (case NET_MSG_GCTRL_TOWERWARS_START_BRD:)

add this in gui: (<WORD Ver="1" Id="COMPETITION_CTF_BATTLE_TEXT">)
<VALUE Lang="pe" Index="12">Show</VALUE>
 
Back