[Share]EP11 Source Code w/ Client

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






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

Any updates of any errors/Bugs etc. using the client included in this thread (AgusanRan)??? and what is the command for getitem/genitem, i've tried /genitem for command and 10211 for pass NO LUCK! thank you!
Example: /genitem 76 4 10211
 
Any updates of any errors/Bugs etc. using the client included in this thread (AgusanRan)??? and what is the command for getitem/genitem, i've tried /genitem for command and 10211 for pass NO LUCK! thank you!
Example: /genitem 76 4 10211

Please back read, don't overlook the answer already replied by Someone


Sent from iPhone via Tapatalk send
 
Oh im Sorry your right! i miss read it i guess!
Anyway for clarification! GM command for itemget is /colongitem and the password is in your defaultcharclass.
 
Top 10 ranking button

1. Add the following into CPvPWindowDisplay.cpp
Find m_pButtonSchoolWarPage( NULL ),
Add the following
m_pButtonRanking( NULL ),

Find m_pButtonSchoolWarPage
Add the following
m_pButtonRanking = CreateTextButton( "PVP_BUTTON_RANKING", SCHOOLWAR_BUTTON_RANKING, (char*)ID2GAMEWORD("COMPETITION_CTF_BATTLE_TEXT",12));

Find case SCHOOLWAR_BUTTON_PAGE:
Add the following
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;

2. Add the following into Cpvpwindowdisplay.h
Find SCHOOLWAR_BUTTON_PAGE,
Add the following
SCHOOLWAR_BUTTON_RANKING,

Find CBasicTextButton* m_pButtonSchoolWarPage;
Add the following
CBasicTextButton* m_pButtonRanking;

3. Delete and add the following GLGaeaClient.cpp
Find: (inside case NET_MSG_GCTRL_TOWERWARS_SETWINSCHOOL_BRD:)

delete this
CInnerInterface::GetInstance().RefreshCTFRanking();

and add following into (case NET_MSG_GCTRL_TOWERWARS_START_BRD:)
CInnerInterface::GetInstance().RefreshCTFRanking();
4. Add the following into gameword.xml
Find <WORD Ver="1" Id="COMPETITION_CTF_BATTLE_TEXT">
Add the following at last line
<VALUE Lang="pe" Index="12">Show</VALUE>
 
Last edited:
kenn14 - [Share]EP11 Source Code w/ Client - RaGEZONE Forums



help! i have this error
 
Top 10 ranking button

1. Add the following into CPvPWindowDisplay.cpp
Find m_pButtonSchoolWarPage( NULL ),
Add the following


Find m_pButtonSchoolWarPage
Add the following


Find case SCHOOLWAR_BUTTON_PAGE:
Add the following


2. Add the following into Cpvpwindowdisplay.h
Find SCHOOLWAR_BUTTON_PAGE,
Add the following


Find CBasicTextButton* m_pButtonSchoolWarPage;
Add the following


3. Delete and add the following GLGaeaClient.cpp
Find: (inside case NET_MSG_GCTRL_TOWERWARS_SETWINSCHOOL_BRD:)

delete this


and add following into (case NET_MSG_GCTRL_TOWERWARS_START_BRD:)

4. Add the following into gameword.xml
Find <WORD Ver="1" Id="COMPETITION_CTF_BATTLE_TEXT">
Add the following at last line

how to add in gui PVP_BUTTON_RANKING
 
Back