# Conflicts:
#	protos/PlayerInfoProto.proto
master_huanxiang
zhangshanxue 2019-09-25 15:55:33 +08:00
commit bb086b8110
5 changed files with 37 additions and 1 deletions

View File

@ -27,9 +27,16 @@ import "CommonProto.proto";
// 14#1#0|14#1#0|14#1#0|...|14#1#0
optional string frames = 2;
optional int32 fightId = 3;
optional int32 type = 4; // 1: 2 3 4: 5
optional int32 type = 4; // 1: 2 3 4: 5 6
optional int32 dropout = 5 ;// 退 1 退
}
message UpdateUserExpIndicaiton{
optional int32 level = 1 ;//
optional int32 exp =2 ; //
}
message FightEndResponse {
//
optional int32 result = 1;
@ -50,6 +57,7 @@ import "CommonProto.proto";
//
optional int32 essenceValue = 9;
optional int32 lastXY =10; //退
optional UpdateUserExpIndicaiton UpdateUserExpIndicaiton = 11;//
}
//

View File

@ -44,6 +44,12 @@ import "CommonProto.proto";
message UpHeroLevelRequest{
optional string heroId = 1; //id
optional int32 targetLevel = 2 ;//
}
message UpHeroLevelResponse{
optional string heroId = 1; //id
optional int32 targetLevel = 2 ;//
}

View File

@ -306,3 +306,7 @@ import "CommonProto.proto";
message EndlessSetTeamIndication{
repeated HeroInfo info = 1;
}
message EndlessMapChange{
optional int32 mapId = 1;
optional int32 worldLevel = 2;
}

View File

@ -178,6 +178,8 @@ enum MessageType{
EXCHANGE_CDK_REQUEST = 10427;//cdkey
EXCHANGE_CDK_RESPONSE = 10428;//cdkey
ENDLESS_MAP_CHANGE_INDICATION = 10429;//
// F 10500
FIGHT_START_REQUEST = 10500; //
@ -459,6 +461,14 @@ enum MessageType{
//indication
MAP_OUT_INDICATION = 11235;
MAIN_LEVEL_GET_INFO_REQUEST = 11236;//
MAIN_LEVEL_GET_INFO_RESPONSE = 11237;
MAIN_LEVEL_TAKE_STATE_REWARD_REQUEST = 11238; //
MAIN_LEVEL_TAKE_STATE_REWARD_RESPONSE = 11239;
// N 11300
NOTIFY_PAY_SUCCESS_INDICATION = 11300 ; //
// O 11400

View File

@ -576,4 +576,12 @@ import "CommonProto.proto";
}
message GetMainLevelInfoResponse{
optional int32 fightId = 1 ; //id
optional int32 state = 2 ;// 1 2 -1
optional int32 duration = 3;//
repeated AdventureBossSimpleInfo adventureBossSimpleInfo =4;
}