• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[Share]EP11 Source Code w/ Client

Skilled Illusionist
Joined
Dec 29, 2009
Messages
351
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.

Source code [Updated]

Client

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.jpg
    131.5 KB · Views: 3,250
Last edited:
Skilled Illusionist
Joined
Dec 29, 2009
Messages
351
Reaction score
25
Re: [Share]EP11 Source Code

First post updated.
 
Last edited:
Newbie Spellweaver
Joined
Nov 15, 2016
Messages
48
Reaction score
1
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 :)
 
Joined
Oct 2, 2010
Messages
1,771
Reaction score
228
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
Top