• 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.




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

Attachments

You must be registered for see attachments list
Last edited:
Skilled Illusionist
Joined
Dec 29, 2009
Messages
351
Reaction score
25
Re: [Share]EP11 Source Code

First post updated.
 
Last edited:

zet

Experienced Elementalist
Joined
Aug 25, 2010
Messages
251
Reaction score
24
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
 
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 :)
 
Junior Spellweaver
Joined
May 4, 2012
Messages
165
Reaction score
2
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 :)
 
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